diff --git a/atpg b/atpg index b11a201..f44677f 100755 Binary files a/atpg and b/atpg differ diff --git a/circuit.cpp b/circuit.cpp index 8ab62c6..a1edbf3 100644 --- a/circuit.cpp +++ b/circuit.cpp @@ -5,6 +5,16 @@ #include #include "assert.h" + +ll Circuit::stem_total_cost; +int Circuit::stem_falsified_cnt; + +ll Circuit::propagate_total_cost; +int Circuit::propagate_falsified_cnt; + +ll Circuit::fault_total_cost; +int Circuit::fault_falsified_cnt; + void Circuit::init_stems() { for(auto& gate: gates) { if(gate->outputs.size() >= 2) { @@ -17,7 +27,7 @@ void Circuit::init_stems() { } for(Gate *g : gates) { - if(g->isPI) continue; + if(g->pi) continue; std::queue q; std::unordered_map used; q.push(g); @@ -37,9 +47,8 @@ void Circuit::init_stems() { //printf("pre: %s %d\n", g->name.c_str(), g->pre_stems.size()); } - for(Gate *g : gates) { - if(g->isPO) continue; + if(g->po) continue; std::queue q; std::unordered_map used; q.push(g); @@ -90,7 +99,7 @@ void Circuit::init_topo_index() { void Circuit::print_gates() { static const char* type2name[9] = {"AND", "NAND", "OR", "NOR", "XOR", "XNOR", "NOT", "BUF", "IN"}; for(Gate* gate : gates) { - printf("Gate: %3s (t:%4s v:%d pi:%d po:%d s:%d p:%d s0:%d s1:%d) Inputs:", gate->name.c_str(), type2name[gate->type], gate->value, gate->isPI, gate->isPO, gate->stem, gate->is_propagated(), gate->sa[0], gate->sa[1]); + printf("Gate: %3s (t:%4s v:%d pi:%d po:%d s:%d p:%d s0:%d s1:%d) Inputs:", gate->name.c_str(), type2name[gate->type], gate->value, gate->pi, gate->po, gate->stem, gate->propagate, gate->fault_satisfied[0], gate->fault_satisfied[1]); for(Gate* in : gate->inputs) { printf(" %s", in->name.c_str()); } @@ -100,50 +109,48 @@ void Circuit::print_gates() { bool Circuit::is_valid_circuit() { - ll flip_total_weight = 0; - ll stem_total_weight = 0; - ll fault_total_weight = 0; + ll stem_total_cost = 0; + int stem_falsified_cnt = 0; - int flip_total_cnt = 0; - int stem_total_cnt = 0; - int fault_total_cnt = 0; + ll propagate_total_cost = 0; + int propagate_falsified_cnt = 0; - //printf("flip: %d, stem: %d, fault:%d\n", flip_total_weight, stem_total_weight, fault_total_weight); + ll fault_total_cost = 0; + int fault_falsified_cnt = 0; + + //printf("propagate: %d, stem: %d, fault:%d\n", propagate_total_cost, stem_total_cost, fault_total_cost); for(Gate* g : gates) { - if(flip_need_update[g->id]) { - flip_total_weight += flip_weight[g->id]; - flip_total_cnt++; + if(!g->propagate_satisfied) { + propagate_total_cost += g->propagate_cost; + propagate_falsified_cnt += 1; } if(g->stem && g->cal_value() != g->value) { - stem_total_weight += stem_weight[g->id]; + stem_total_cost += g->stem_cost; + stem_falsified_cnt += 1; } - if(g->stem && g->cal_value() == g->value) { - stem_total_cnt++; + if(!g->fault_satisfied[0]) { + fault_total_cost += g->fault_cost[0]; + fault_falsified_cnt += 1; } - if(g->sa[0]) { - fault_total_weight += fault_weight[g->id][0]; - fault_total_cnt += 1; - } - - if(g->sa[1]) { - fault_total_weight += fault_weight[g->id][1]; - fault_total_cnt += 1; + if(!g->fault_satisfied[1]) { + fault_total_cost += g->fault_cost[1]; + fault_falsified_cnt += 1; } // 检查门的赋值情况 - if(g->cal_value() != g->value) { + if(!g->stem && g->cal_value() != g->value) { printf("WRONG-ASSGIN: %s \n", g->name.c_str()); return false; } // 检查 PO 的传播设定是否正确 - if(g->isPO) { - if(g->sa[g->value] != 0 || g->sa[!g->value] == 0 ) { + if(g->po) { + if(g->fault_satisfied[g->value] != 0 || g->fault_satisfied[!g->value] == 0 ) { printf("WRONG-PO: %s \n", g->name.c_str()); } continue; @@ -163,30 +170,30 @@ bool Circuit::is_valid_circuit() { g->value = !g->value; if(out->cal_value() != out->value) { - sa0 |= out->is_propagated() && !g->value; - sa1 |= out->is_propagated() && g->value; + sa0 |= out->propagate && !g->value; + sa1 |= out->propagate && g->value; } g->value = !g->value; } - if(sa0 != g->sa[0] || sa1 != g->sa[1]) { + if(sa0 != g->fault_satisfied[0] || sa1 != g->fault_satisfied[1]) { printf("WRONG-SA: %s \n", g->name.c_str()); return false; } } - if(this->flip_total_weight != flip_total_weight || this->stem_total_weight != stem_total_weight || this->fault_total_weight != fault_total_weight) { + if(Circuit::propagate_total_cost != propagate_total_cost || Circuit::stem_total_cost != stem_total_cost || Circuit::fault_total_cost != fault_total_cost) { printf("CIRCUIT CHECK FAILED!\n"); - printf("[wrong] flip: %d, stem: %d, fault:%d\n", this->flip_total_weight, this->stem_total_weight, this->fault_total_weight); - printf("[right] flip: %d, stem: %d, fault:%d\n", flip_total_weight, stem_total_weight, fault_total_weight); + printf("[wrong] propagate: %lld, stem: %lld, fault:%lld\n", Circuit::propagate_total_cost, Circuit::stem_total_cost, Circuit::fault_total_cost); + printf("[right] propagate: %lld, stem: %lld, fault:%lld\n", propagate_total_cost, stem_total_cost, fault_total_cost); return false; } - if(this->flip_total_cnt != flip_total_cnt || this->stem_total_cnt != stem_total_cnt || this->fault_total_cnt != fault_total_cnt) { + if(Circuit::propagate_falsified_cnt != propagate_falsified_cnt || Circuit::stem_falsified_cnt != stem_falsified_cnt || Circuit::fault_falsified_cnt != fault_falsified_cnt) { printf("CIRCUIT CHECK FAILED!\n"); - printf("[wrong] flip_cnt: %d, stem_cnt: %d, fault_cnt:%d\n", this->flip_total_cnt, this->stem_total_cnt, this->fault_total_cnt); - printf("[right] flip_cnt: %d, stem_cnt: %d, fault_cnt:%d\n", flip_total_cnt, stem_total_cnt, fault_total_weight); + printf("[wrong] propagate_cnt: %d, stem_cnt: %d, fault_cnt:%d\n", Circuit::propagate_falsified_cnt, Circuit::stem_falsified_cnt, Circuit::fault_falsified_cnt); + printf("[right] propagate_cnt: %d, stem_cnt: %d, fault_cnt:%d\n", propagate_falsified_cnt, stem_falsified_cnt, fault_falsified_cnt); return false; } diff --git a/circuit.h b/circuit.h index e8c48ed..b843ffa 100644 --- a/circuit.h +++ b/circuit.h @@ -10,24 +10,39 @@ using ll = long long; class Gate { public: + + // gate structral info in circuit int id; std::string name; enum Type { AND, NAND, OR, NOR, XOR, XNOR, NOT, BUF, INPUT } type; - int value; - bool sa[2]; bool stem; - bool isPI; - bool isPO; - - std::unordered_map> sa_by_out; - + bool pi; + bool po; std::vector pre_stems; std::vector suc_stems; std::vector outputs; std::vector inputs; - bool is_propagated(); + // Status Define (Two var) + bool value; + bool propagate; + + // local search + bool stem_satisified; + int stem_cost; + + bool propagate_satisfied; + int propagate_cost; + + int fault_satisfied[2]; + int fault_cost[2]; + + // configuration checking + bool CC; + + std::unordered_map> sa_by_out; + int cal_value(); }; @@ -60,46 +75,37 @@ void init_stems(); // local search +// shared info +static const int STEM_INC = 10; +static const int STEM_COST_MAX = 1e9; +static ll stem_total_cost; +static int stem_falsified_cnt; + +static const int PROPAGATE_INC = 10; +static const int PROPAGATE_COST_MAX = 1e9; +static ll propagate_total_cost; +static int propagate_falsified_cnt; + +static const int FAULT_INC = 1; +static const int FAULT_COST_MAX = 20; +static ll fault_total_cost; +static int fault_falsified_cnt; + bool local_search(std::unordered_set &faults); // incremental flip struct const double SP = 0.01; -const int FLIP_INC = 1; -const int FLIP_WEIGHT_MAX = 1e9; - -int* CC; - -ll flip_total_weight; -int flip_total_cnt; -int* flip_weight; -int* flip_need_update; -std::vector flip_update_queue; - -// incremental stem struct -const int STEM_INC = 10; -const int STEM_WEIGHT_MAX = 1e9; -ll stem_total_weight; -int stem_total_cnt; -int* stem_weight; -int* stem_satisfied; - -const int FAULT_INC = 1; -const int FAULT_WEIGHT_MAX = 20; -ll fault_total_weight; -int fault_total_cnt; -int** fault_weight; -int** fault_detected; - -void ls_init_circuit(); -void ls_init_weight(const std::unordered_set &faults); +void ls_init_circuit(const std::unordered_set &faults); void ls_update_weight(); void ls_init_data_structs(); void ls_block_recal(Gate* stem); -void ls_flip(Gate* stem); +Gate* ls_pick_good_var(); +Gate* ls_pick_falsified_var(); + void ls_update(Gate* stem); ll ls_pick_score(Gate* stem); diff --git a/gate.cpp b/gate.cpp index f5be4bd..ec5f1d3 100644 --- a/gate.cpp +++ b/gate.cpp @@ -2,10 +2,6 @@ #include "assert.h" -bool Gate::is_propagated() { - return sa[0] || sa[1]; -} - int Gate::cal_value() { int res; diff --git a/ls.cpp b/ls.cpp index b34a949..8d8828c 100644 --- a/ls.cpp +++ b/ls.cpp @@ -1,5 +1,6 @@ #include "circuit.h" +#include #include #include #include @@ -13,105 +14,29 @@ bool Circuit::local_search(std::unordered_set &faults) { // 初始化并重置所有 ls 数据结构 ls_init_data_structs(); - // 赋值初始权重 - ls_init_weight(faults); - // 随机生成初始电路 - ls_init_circuit(); + ls_init_circuit(faults); printf("local search!\n"); while(true) { - Gate* stem = nullptr; - ll max_score = 0; - - std::vector stems_random; - std::vector candidates; + Gate* picked_stem = ls_pick_good_var(); - for(int i=0; iid]) { - stems_random.push_back(stems[i]); - } - } - for(int i=0; i max_score) { - max_score = t_score; - stem = t_stem; - } - if(t_score > 0) t++; - if(i >= T) break; - } - - if(max_score > 0) { - // printf("FLIP: %s (+%lld)\n", stem->name.c_str(), max_score); - // printf("[LS] flip: %lld, stem: %lld, fault:%lld. flip_cnt: %d, stem_cnt: %d, fault_cnt:%d\n", flip_total_weight, stem_total_weight, fault_total_weight, flip_total_cnt, stem_total_cnt, fault_total_cnt); - ls_flip(stem); - - CC[stem->id] = 0; - - for(Gate* pre : stem->pre_stems) { - CC[pre->id] = 1; - } - - for(Gate* suc : stem->suc_stems) { - CC[suc->id] = 1; - } - - } else { + if(picked_stem == nullptr) { ls_update_weight(); + picked_stem = ls_pick_falsified_var(); + printf("[UP] propagate: %lld, stem: %lld, fault:%lld. propagate_cnt: %d, stem_cnt: %d, fault_cnt:%d\n", propagate_total_cost, stem_total_cost, fault_total_cost, propagate_falsified_cnt, stem_falsified_cnt, fault_falsified_cnt); + } else { + printf("[LS] propagate: %lld, stem: %lld, fault:%lld. propagate_cnt: %d, stem_cnt: %d, fault_cnt:%d\n", propagate_total_cost, stem_total_cost, fault_total_cost, propagate_falsified_cnt, stem_falsified_cnt, fault_falsified_cnt); + } - while(!flip_update_queue.empty()) { - Gate* g = flip_update_queue.back(); - flip_update_queue.pop_back(); - if(!flip_need_update[g->id]) continue; - flip_need_update[g->id] = false; - flip_total_weight -= flip_weight[g->id]; - flip_total_cnt -= 1; - ls_update(g); - } + ls_update(picked_stem); - if(stem_total_cnt == stems.size() && flip_total_cnt == 0) { - printf("FIND SOLUTION!\n"); - printf("[SOL] flip: %lld, stem: %lld, fault:%lld. flip_cnt: %d, stem_cnt: %d, fault_cnt:%d\n", flip_total_weight, stem_total_weight, fault_total_weight, flip_total_cnt, stem_total_cnt, fault_total_cnt); - break; - } - - std::vector candidates; - for(Gate *g : stems) { - if(g->isPO) continue; - if(stem_satisfied[g->id]) continue; - candidates.push_back(g); - } - - if(candidates.size() == 0) { - candidates.push_back(stems[rand()%stems.size()]); - } - - Gate* pick = candidates[rand()%candidates.size()]; - - ls_flip(pick); - - CC[pick->id] = 0; - - for(Gate* pre : pick->pre_stems) { - CC[pre->id] = 1; - } - - for(Gate* suc : pick->suc_stems) { - CC[suc->id] = 1; - } - - printf("[UP] flip: %lld, stem: %lld, fault:%lld. flip_cnt: %lld, stem_cnt: %lld, fault_cnt:%lld\n", flip_total_weight, stem_total_weight, fault_total_weight, flip_total_cnt, stem_total_cnt, fault_total_cnt); + if(stem_falsified_cnt == 0 && propagate_falsified_cnt == 0) { + printf("FIND SOLUTION!\n"); + printf("[SOL] propagate: %lld, stem: %lld, fault:%lld. propagate_cnt: %d, stem_cnt: %d, fault_cnt:%d\n", propagate_total_cost, stem_total_cost, fault_total_cost, propagate_falsified_cnt, stem_falsified_cnt, fault_falsified_cnt); + break; } } @@ -124,90 +49,113 @@ bool Circuit::local_search(std::unordered_set &faults) { std::unordered_set tmp = faults; for(Fault* f : tmp) { - if(f->gate->sa[f->type]) { + if(f->gate->fault_satisfied[f->type]) { faults.erase(f); } } if(tmp.size() == faults.size()) pattern--; - printf("coverage: %.4f\tpattern: %d\tbefore: %d\tnow: %d\n", (double)(original_faults - faults.size()) / (original_faults), ++pattern, tmp.size(), faults.size()); + printf("coverage: %.4f\tpattern: %d\tbefore: %ld\tnow: %ld\n", (double)(original_faults - faults.size()) / (original_faults), ++pattern, tmp.size(), faults.size()); //if(tmp.size() == faults.size()) return false; return true; } +Gate* Circuit::ls_pick_falsified_var() { + std::vector candidates; + for(Gate *g : stems) { + if(g->po) continue; + if(g->stem_satisified) continue; + candidates.push_back(g); + } + + if(candidates.size() == 0) { + candidates.push_back(stems[rand()%stems.size()]); + } + + Gate* pick = candidates[rand()%candidates.size()]; + return pick; +} + +Gate* Circuit::ls_pick_good_var() { + Gate* stem = nullptr; + ll max_score = 0; + + std::vector stems_random; + std::vector candidates; + + for(Gate* s : stems) { + if(s->CC) { + stems_random.push_back(s); + } + } + + for(int i=0; i max_score) { + max_score = t_score; + stem = t_stem; + } + if(t_score > 0) t++; + if(i >= T) break; + } + + if(max_score > 0) { + return stem; + } else { + return nullptr; + } + +} + void Circuit::ls_update_weight() { //STEM_INC += 5; - if(rand() % 10000 <= SP * 10000) { - for(Gate* g : gates) { - if(g->stem && stem_satisfied[g->id] && (stem_weight[g->id] - STEM_INC >= 1)) { - stem_weight[g->id] -= STEM_INC; - for(Gate* suc : g->suc_stems) { - if(stem_weight[suc->id] + STEM_INC <= STEM_WEIGHT_MAX) { - stem_weight[suc->id] += STEM_INC; - if(!stem_satisfied[suc->id]) { - stem_total_weight += STEM_INC; - } - } - } - } - } + if(false) { + } else { for(Gate* g : gates) { - if(flip_need_update[g->id] && (flip_weight[g->id] + FLIP_INC < FLIP_WEIGHT_MAX)) { - flip_weight[g->id] += FLIP_INC; - flip_total_weight += FLIP_INC; + + if(g->stem && !g->propagate_satisfied && (g->propagate_cost + PROPAGATE_INC <= PROPAGATE_COST_MAX)) { + g->propagate_cost += PROPAGATE_INC; + propagate_total_cost += PROPAGATE_INC; } - if(g->stem && !stem_satisfied[g->id] && (stem_weight[g->id] + STEM_INC < STEM_WEIGHT_MAX)) { - stem_weight[g->id] += STEM_INC; - stem_total_weight += STEM_INC; + if(g->stem && !g->stem_satisified && (g->stem_cost + STEM_INC <= STEM_COST_MAX)) { + g->stem_cost += STEM_INC; + stem_total_cost += STEM_INC; for(Gate* suc : g->suc_stems) { - if(stem_weight[suc->id] - STEM_INC > 1) { - stem_weight[suc->id] -= STEM_INC; - if(!stem_satisfied[suc->id]) { - stem_total_weight -= STEM_INC; + if(suc->stem_cost - STEM_INC >= 1) { + suc->stem_cost -= STEM_INC; + if(!suc->stem_satisified) { + stem_total_cost -= STEM_INC; } } } } - for(int i=0; i<=1; i++) { - for(Gate* pre : g->suc_stems) { - // int inc = 0.2 * fault_weight[pre->id][i]; - // inc = std::max(1, inc); - - // if(g->type == Gate::NAND || g->type == Gate::NOR || g->type == Gate::NOT || g->type == Gate::XNOR) { - // if(fault_weight[g->id][!pre->value] + inc <= FAULT_WEIGHT_MAX) { - // fault_weight[g->id][!pre->value] += inc; - // if(g->sa[!pre->value]) fault_total_weight += inc; - // } - // } else { - // if(fault_weight[g->id][pre->value] + inc <= FAULT_WEIGHT_MAX) { - // fault_weight[g->id][pre->value] += inc; - // if(g->sa[pre->value]) fault_total_weight += inc; - // } - // } - - // if(fault_weight[suc->id][1] + inc <= FAULT_WEIGHT_MAX) { - // fault_weight[suc->id][1] += inc; - // if(suc->sa[1]) fault_total_weight += inc; - // } - } + if(!g->fault_satisfied[0] && g->fault_cost[0] > 0 && (g->fault_cost[0] + FAULT_INC <= FAULT_COST_MAX)) { + g->fault_cost[0] += FAULT_INC; + fault_total_cost += FAULT_INC; } - if(!g->sa[0] && fault_weight[g->id][0] > 0 && (fault_weight[g->id][0] + FAULT_INC < FAULT_WEIGHT_MAX)) { - fault_weight[g->id][0] += FAULT_INC; + if(!g->fault_satisfied[1] && g->fault_cost[1] > 0 && (g->fault_cost[1] + FAULT_INC <= FAULT_COST_MAX)) { + g->fault_cost[1] += FAULT_INC; + fault_total_cost += FAULT_INC; } - if(!g->sa[1] && fault_weight[g->id][1] > 0 && (fault_weight[g->id][1] + FAULT_INC < FAULT_WEIGHT_MAX)) { - fault_weight[g->id][1] += FAULT_INC; - } } } } @@ -217,22 +165,34 @@ bool cmp(Gate* a, Gate *b) { return a->id > b->id; } -void Circuit::ls_flip(Gate* stem) { - stem->value = !stem->value; - ls_block_recal(stem); -} void Circuit::ls_update(Gate* stem) { + + stem->CC = 0; + + for(Gate* pre : stem->pre_stems) { + pre->CC = 1; + } + + for(Gate* suc : stem->suc_stems) { + suc->CC = 1; + } + ls_block_recal(stem); + } ll Circuit::ls_pick_score(Gate* stem) { ll old_score = ls_score(); - ls_flip(stem); + //stem->value = !stem->value; + + ls_update(stem); ll new_score = ls_score(); - ls_flip(stem); + //stem->value = !stem->value; + + ls_update(stem); old_score = std::max(old_score, ls_score()); @@ -240,29 +200,32 @@ ll Circuit::ls_pick_score(Gate* stem) { } ll Circuit::ls_score() { - //ll score = -flip_total_weight -stem_total_weight + fault_total_weight; - ll score = -flip_total_weight -stem_total_weight + fault_total_weight; + ll score = - propagate_total_cost - stem_total_cost - fault_total_cost; return score; } -void Circuit::ls_init_weight(const std::unordered_set &faults) { + +void Circuit::ls_init_circuit(const std::unordered_set &faults) { + + fault_falsified_cnt = faults.size(); + stem_falsified_cnt = stems.size(); + propagate_falsified_cnt = stems.size(); + for(Gate* s : stems) { - stem_weight[s->id] = 1; - stem_total_weight += stem_weight[s->id]; + s->stem_cost = 1; + stem_total_cost += s->stem_cost; + + s->propagate_cost = 1; + propagate_total_cost += s->propagate_cost; } for(Fault* f : faults) { - fault_weight[f->gate->id][f->type] = 1; + f->gate->fault_cost[f->type] = 1; + fault_total_cost += f->gate->fault_cost[f->type]; } - for(Gate* s: stems) { - flip_weight[s->id] = 1; - } -} - -void Circuit::ls_init_circuit() { for(Gate* g : gates) { - g->sa[0] = 0; - g->sa[1] = 0; + g->fault_satisfied[0] = 0; + g->fault_satisfied[1] = 0; } for(Gate* s : stems) { @@ -273,105 +236,66 @@ void Circuit::ls_init_circuit() { ls_update(stems[i]); } - while(!flip_update_queue.empty()) { - Gate* g = flip_update_queue.back(); - flip_update_queue.pop_back(); - if(!flip_need_update[g->id]) continue; - flip_need_update[g->id] = false; - flip_total_weight -= flip_weight[g->id]; - flip_total_cnt -= 1; - ls_update(g); - } + assert(is_valid_circuit()); } void Circuit::ls_init_data_structs() { - const int MAX_LEN = gates.size() + 1; - if(flip_weight == nullptr) { - CC = new int[MAX_LEN]; + propagate_total_cost = 0; + propagate_falsified_cnt = 0; + stem_total_cost = 0; + stem_falsified_cnt = 0; - flip_weight = new int[MAX_LEN]; - flip_need_update = new int[MAX_LEN]; + fault_total_cost = 0; + fault_falsified_cnt = 0; - stem_weight = new int[MAX_LEN]; - stem_satisfied = new int[MAX_LEN]; + for(Gate* g : gates) { + g->CC = 0; - fault_weight = new int*[MAX_LEN]; - for(int i=0; ipropagate = 0; + g->propagate_cost = 0; + g->propagate_satisfied = 0; - } + g->stem_cost = 0; + g->stem_satisified = 0; - flip_total_weight = 0; - flip_total_cnt = 0; - - stem_total_weight = 0; - stem_total_cnt = 0; - - fault_total_weight = 0; - fault_total_cnt = 0; - - for(int i=0; ifault_satisfied[0] = g->fault_satisfied[1] = 0; + g->fault_cost[0] = g->fault_cost[1] = 0; } } - void Circuit::ls_block_recal(Gate* stem) { - if(flip_need_update[stem->id]) { - flip_need_update[stem->id] = false; - flip_total_weight -= flip_weight[stem->id]; - flip_total_cnt -= 1; + + if(stem->cal_value() == stem->value && !stem->stem_satisified) { + stem->stem_satisified = true; + stem_total_cost -= stem->stem_cost; + stem_falsified_cnt -= 1; } - if(stem->cal_value() == stem->value && !stem_satisfied[stem->id]){ - stem_satisfied[stem->id] = true; - stem_total_weight -= stem_weight[stem->id]; - stem_total_cnt += 1; - } - - if(stem->cal_value() != stem->value && stem_satisfied[stem->id]) { - stem_satisfied[stem->id] = false; - stem_total_weight += stem_weight[stem->id]; - stem_total_cnt -= 1; + if(stem->cal_value() != stem->value && stem->stem_satisified) { + stem->stem_satisified = false; + stem_total_cost += stem->stem_cost; + stem_falsified_cnt += 1; } - //printf("flip: %s\n", stem->name.c_str()); - - //stem->value = !stem->value; - - if(stem->isPO) { - - if(stem->sa[!stem->value] == false) { - fault_total_weight += fault_weight[stem->id][!stem->value]; - fault_total_cnt += 1; - stem->sa[!stem->value] = true; + // 当 po 的值变化 + if(stem->po) { + if(stem->fault_satisfied[stem->value]) { + stem->fault_satisfied[stem->value] = false; + fault_total_cost += stem->fault_cost[stem->value]; + fault_falsified_cnt += 1; } - if(stem->sa[stem->value] == true) { - fault_total_weight -= fault_weight[stem->id][stem->value]; - fault_total_cnt -= 1; - stem->sa[stem->value] = false; + if(!stem->fault_satisfied[!stem->value]) { + stem->fault_satisfied[!stem->value] = true; + fault_total_cost -= stem->fault_cost[!stem->value]; + fault_falsified_cnt -= 1; } } std::queue q; std::unordered_map used; - std::vector suc_stems; q.push(stem); @@ -380,10 +304,7 @@ void Circuit::ls_block_recal(Gate* stem) { q.pop(); used[g] = false; for(Gate* out : g->outputs) { - if(out->stem) { - suc_stems.push_back(out); - continue; - } + if(out->stem) continue; out->value = out->cal_value(); if(!used[out]) { used[out] = true; @@ -395,19 +316,19 @@ void Circuit::ls_block_recal(Gate* stem) { assert(q.empty()); used.clear(); - for(Gate* stem : suc_stems) { + for(Gate* stem : stem->suc_stems) { q.push(stem); - if(stem->cal_value() == stem->value && !stem_satisfied[stem->id]){ - stem_satisfied[stem->id] = true; - stem_total_weight -= stem_weight[stem->id]; - stem_total_cnt += 1; + if(stem->cal_value() == stem->value && !stem->stem_satisified) { + stem->stem_satisified = true; + stem_total_cost -= stem->stem_cost; + stem_falsified_cnt -= 1; } - - if(stem->cal_value() != stem->value && stem_satisfied[stem->id]) { - stem_satisfied[stem->id] = false; - stem_total_weight += stem_weight[stem->id]; - stem_total_cnt -= 1; + + if(stem->cal_value() != stem->value && stem->stem_satisified) { + stem->stem_satisified = false; + stem_total_cost += stem->stem_cost; + stem_falsified_cnt += 1; } } @@ -418,63 +339,68 @@ void Circuit::ls_block_recal(Gate* stem) { used[g] = false; bool right_value = (g->cal_value() == g->value); + for(Gate* in : g->inputs) { in->value = !in->value; bool input_detected = (g->cal_value() != g->value); in->value = !in->value; - bool sa0 = right_value && input_detected && g->sa[!g->value] && in->value; - bool sa1 = right_value && input_detected && g->sa[!g->value] && !in->value; + bool sa0 = right_value && input_detected && g->fault_satisfied[!g->value] && in->value; + bool sa1 = right_value && input_detected && g->fault_satisfied[!g->value] && !in->value; in->sa_by_out[g] = std::make_pair(sa0, sa1); - bool old_sa[2]; - old_sa[0] = in->sa[0]; - old_sa[1] = in->sa[1]; + bool new_sa[2]; + new_sa[0] = new_sa[1] = 0; - in->sa[0] = in->sa[1] = 0; + in->fault_satisfied[0] = in->fault_satisfied[1] = 0; for(Gate* out : in->outputs) { auto &p = in->sa_by_out[out]; - in->sa[0] |= p.first; - in->sa[1] |= p.second; + new_sa[0] |= p.first; + new_sa[1] |= p.second; } - if(in->stem && !in->isPI && (in->sa[0] != old_sa[0] || in->sa[1] != old_sa[1])) { - - for(Gate* pre : in->pre_stems) { - if(flip_need_update[pre->id]) continue; - - flip_need_update[pre->id] = true; - flip_update_queue.push_back(pre); - - flip_total_weight += flip_weight[pre->id]; - flip_total_cnt += 1; + if(in->stem) { + if(in->propagate_satisfied && (in->fault_satisfied[0] != new_sa[0] || in->fault_satisfied[1] != new_sa[1])) { + in->propagate_satisfied = false; + propagate_falsified_cnt++; + propagate_total_cost += in->propagate_cost; } - } - if(old_sa[0] != in->sa[0]) { - if(in->sa[0]) { - fault_total_weight += fault_weight[in->id][0]; - fault_total_cnt += 1; - } else { - fault_total_weight -= fault_weight[in->id][0]; - fault_total_cnt -= 1; + if(!in->propagate_satisfied && (in->fault_satisfied[0] == new_sa[0] && in->fault_satisfied[1] == new_sa[1])) { + in->propagate_satisfied = true; + propagate_falsified_cnt--; + propagate_total_cost -= in->propagate_cost; } - } - if(old_sa[1] != in->sa[1]) { - if(in->sa[1]) { - fault_total_weight += fault_weight[in->id][1]; - fault_total_cnt += 1; - } else { - fault_total_weight -= fault_weight[in->id][1]; - fault_total_cnt -= 1; + } else { + if(!new_sa[0] != in->fault_satisfied[0]) { + if(in->fault_satisfied[0]) { + fault_total_cost += in->fault_cost[0]; + fault_falsified_cnt += 1; + } else { + fault_total_cost -= in->fault_cost[0]; + fault_falsified_cnt -= 1; + } + } + + if(!new_sa[1] != in->fault_satisfied[1]) { + if(in->fault_satisfied[1]) { + fault_total_cost += in->fault_cost[1]; + fault_falsified_cnt += 1; + } else { + fault_total_cost -= in->fault_cost[1]; + fault_falsified_cnt -= 1; + } + } + + in->fault_satisfied[0] = new_sa[0]; + in->fault_satisfied[1] = new_sa[1]; + + if(!in->stem && !used[in]) { + used[in] = true; + q.push(in); } - } - - if(!in->stem && !used[in]) { - used[in] = true; - q.push(in); } } } diff --git a/output.txt b/output.txt index 3118fdd..0dd7ee5 100644 --- a/output.txt +++ b/output.txt @@ -1,16104 +1,6557 @@ make: 'atpg' is up to date. ======================== -parsing file c6288.bench ... Done. +parsing file c432.bench ... Done. ====== Circuit Statistics ====== -PI: 32 -PO: 32 -Gate: 2448 -Stem: 1488 +PI: 36 +PO: 7 +Gate: 196 +Stem: 196 ================================ local search! -[UP] flip: 0, stem: 5356, fault:1162. flip_cnt: 0, stem_cnt: 1232, fault_cnt:811 -[UP] flip: 0, stem: 5616, fault:2208. flip_cnt: 0, stem_cnt: 1232, fault_cnt:994 -[UP] flip: 3, stem: 4309, fault:3294. flip_cnt: 2, stem_cnt: 1299, fault_cnt:1089 -[UP] flip: 0, stem: 5619, fault:4267. flip_cnt: 0, stem_cnt: 1309, fault_cnt:1115 -[UP] flip: 0, stem: 5051, fault:4614. flip_cnt: 0, stem_cnt: 1317, fault_cnt:986 -[UP] flip: 10, stem: 4713, fault:7125. flip_cnt: 3, stem_cnt: 1335, fault_cnt:1220 -[UP] flip: 23, stem: 4962, fault:7061. flip_cnt: 5, stem_cnt: 1346, fault_cnt:1087 -[UP] flip: 7, stem: 5693, fault:11561. flip_cnt: 7, stem_cnt: 1355, fault_cnt:1553 -[UP] flip: 2, stem: 5864, fault:12784. flip_cnt: 2, stem_cnt: 1364, fault_cnt:1580 -[UP] flip: 23, stem: 5846, fault:13863. flip_cnt: 5, stem_cnt: 1362, fault_cnt:1597 -[UP] flip: 32, stem: 7194, fault:15028. flip_cnt: 5, stem_cnt: 1354, fault_cnt:1624 -[UP] flip: 29, stem: 7095, fault:15082. flip_cnt: 7, stem_cnt: 1353, fault_cnt:1550 -[UP] flip: 0, stem: 6766, fault:15530. flip_cnt: 0, stem_cnt: 1362, fault_cnt:1500 -[UP] flip: 32, stem: 9332, fault:17770. flip_cnt: 7, stem_cnt: 1376, fault_cnt:1667 -[UP] flip: 0, stem: 9257, fault:19212. flip_cnt: 0, stem_cnt: 1371, fault_cnt:1726 -[UP] flip: 57, stem: 8052, fault:20965. flip_cnt: 7, stem_cnt: 1356, fault_cnt:1768 -[UP] flip: 2, stem: 9691, fault:22119. flip_cnt: 2, stem_cnt: 1357, fault_cnt:1807 -[UP] flip: 50, stem: 8051, fault:22176. flip_cnt: 5, stem_cnt: 1357, fault_cnt:1714 -[UP] flip: 37, stem: 8639, fault:22354. flip_cnt: 5, stem_cnt: 1369, fault_cnt:1665 -[UP] flip: 22, stem: 9082, fault:21868. flip_cnt: 2, stem_cnt: 1366, fault_cnt:1593 -[UP] flip: 20, stem: 8382, fault:22362. flip_cnt: 2, stem_cnt: 1366, fault_cnt:1586 -[UP] flip: 78, stem: 7605, fault:23843. flip_cnt: 7, stem_cnt: 1383, fault_cnt:1646 -[UP] flip: 20, stem: 9229, fault:24434. flip_cnt: 2, stem_cnt: 1379, fault_cnt:1674 -[UP] flip: 0, stem: 8714, fault:25418. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1715 -[UP] flip: 0, stem: 8695, fault:26349. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1746 -[UP] flip: 23, stem: 10074, fault:26425. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1748 -[UP] flip: 111, stem: 10129, fault:26420. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1722 -[UP] flip: 46, stem: 8679, fault:26439. flip_cnt: 3, stem_cnt: 1389, fault_cnt:1709 -[UP] flip: 26, stem: 8813, fault:26070. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1668 -[UP] flip: 119, stem: 9793, fault:26779. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1703 -[UP] flip: 58, stem: 9600, fault:27512. flip_cnt: 3, stem_cnt: 1388, fault_cnt:1733 -[UP] flip: 21, stem: 8529, fault:28361. flip_cnt: 1, stem_cnt: 1379, fault_cnt:1763 -[UP] flip: 64, stem: 9852, fault:28576. flip_cnt: 2, stem_cnt: 1376, fault_cnt:1772 -[UP] flip: 108, stem: 10764, fault:28951. flip_cnt: 5, stem_cnt: 1384, fault_cnt:1792 -[UP] flip: 40, stem: 11107, fault:28561. flip_cnt: 2, stem_cnt: 1381, fault_cnt:1768 -[UP] flip: 59, stem: 11914, fault:28839. flip_cnt: 2, stem_cnt: 1374, fault_cnt:1777 -[UP] flip: 50, stem: 8508, fault:25586. flip_cnt: 2, stem_cnt: 1380, fault_cnt:1580 -[UP] flip: 137, stem: 10228, fault:25510. flip_cnt: 7, stem_cnt: 1380, fault_cnt:1576 -[UP] flip: 0, stem: 8671, fault:24395. flip_cnt: 0, stem_cnt: 1377, fault_cnt:1497 -[UP] flip: 179, stem: 8415, fault:25141. flip_cnt: 7, stem_cnt: 1373, fault_cnt:1529 -[UP] flip: 91, stem: 8190, fault:26572. flip_cnt: 5, stem_cnt: 1378, fault_cnt:1603 -[UP] flip: 76, stem: 7561, fault:28606. flip_cnt: 2, stem_cnt: 1387, fault_cnt:1705 -[UP] flip: 154, stem: 7497, fault:30111. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1774 -[UP] flip: 0, stem: 8637, fault:29638. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1741 -[UP] flip: 79, stem: 10337, fault:29620. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1740 -[UP] flip: 7, stem: 10975, fault:29846. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1751 -[UP] flip: 131, stem: 10495, fault:29642. flip_cnt: 4, stem_cnt: 1393, fault_cnt:1739 -[UP] flip: 171, stem: 9501, fault:27130. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1592 -[UP] flip: 103, stem: 10522, fault:28718. flip_cnt: 4, stem_cnt: 1386, fault_cnt:1674 -[UP] flip: 68, stem: 9465, fault:29112. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1691 -[UP] flip: 95, stem: 9804, fault:29411. flip_cnt: 3, stem_cnt: 1384, fault_cnt:1702 -[UP] flip: 191, stem: 11062, fault:29642. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1714 -[UP] flip: 199, stem: 9455, fault:29735. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1710 -[UP] flip: 163, stem: 11055, fault:29697. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1708 -[UP] flip: 157, stem: 11259, fault:27098. flip_cnt: 4, stem_cnt: 1389, fault_cnt:1562 -[UP] flip: 144, stem: 10917, fault:30302. flip_cnt: 4, stem_cnt: 1391, fault_cnt:1730 -[UP] flip: 0, stem: 12597, fault:30302. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1730 -[UP] flip: 196, stem: 11916, fault:30254. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1721 -[UP] flip: 227, stem: 13176, fault:30254. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1721 -[UP] flip: 163, stem: 11955, fault:29846. flip_cnt: 4, stem_cnt: 1393, fault_cnt:1694 -[UP] flip: 166, stem: 13475, fault:29790. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1691 -[UP] flip: 67, stem: 12276, fault:28565. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1624 -[UP] flip: 98, stem: 13097, fault:28650. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1625 -[UP] flip: 163, stem: 10839, fault:30403. flip_cnt: 4, stem_cnt: 1389, fault_cnt:1710 -[UP] flip: 249, stem: 11315, fault:29514. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1659 -[UP] flip: 112, stem: 12795, fault:29344. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1650 -[UP] flip: 53, stem: 14395, fault:29610. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1664 -[UP] flip: 85, stem: 15955, fault:29914. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1680 -[UP] flip: 235, stem: 12996, fault:28638. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1608 -[UP] flip: 0, stem: 12938, fault:28861. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1619 -[UP] flip: 125, stem: 14219, fault:28834. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1617 -[UP] flip: 204, stem: 15102, fault:29585. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1656 -[UP] flip: 115, stem: 13680, fault:29475. flip_cnt: 3, stem_cnt: 1388, fault_cnt:1649 -[UP] flip: 131, stem: 13902, fault:31189. flip_cnt: 3, stem_cnt: 1386, fault_cnt:1739 -[UP] flip: 319, stem: 14841, fault:30984. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1728 -[UP] flip: 100, stem: 16360, fault:30756. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1716 -[UP] flip: 78, stem: 18000, fault:30699. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1713 -[UP] flip: 84, stem: 19521, fault:30642. flip_cnt: 2, stem_cnt: 1387, fault_cnt:1710 -[UP] flip: 213, stem: 15483, fault:27843. flip_cnt: 4, stem_cnt: 1385, fault_cnt:1555 -[UP] flip: 289, stem: 17143, fault:27824. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1554 -[UP] flip: 318, stem: 18643, fault:27748. flip_cnt: 7, stem_cnt: 1385, fault_cnt:1550 -[UP] flip: 142, stem: 15190, fault:30995. flip_cnt: 3, stem_cnt: 1378, fault_cnt:1722 -[UP] flip: 314, stem: 16890, fault:30919. flip_cnt: 7, stem_cnt: 1378, fault_cnt:1718 -[UP] flip: 350, stem: 18349, fault:30862. flip_cnt: 7, stem_cnt: 1379, fault_cnt:1715 -[UP] flip: 75, stem: 14109, fault:32493. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1792 -[UP] flip: 334, stem: 15469, fault:32455. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1790 -[UP] flip: 146, stem: 14589, fault:31225. flip_cnt: 3, stem_cnt: 1399, fault_cnt:1723 -[UP] flip: 119, stem: 15286, fault:31111. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1717 -[UP] flip: 234, stem: 15236, fault:29228. flip_cnt: 4, stem_cnt: 1392, fault_cnt:1615 -[UP] flip: 0, stem: 14752, fault:29621. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1634 -[UP] flip: 297, stem: 15569, fault:30083. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1659 -[UP] flip: 225, stem: 16350, fault:32057. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1763 -[UP] flip: 208, stem: 16055, fault:30194. flip_cnt: 4, stem_cnt: 1393, fault_cnt:1661 -[UP] flip: 116, stem: 15644, fault:28584. flip_cnt: 3, stem_cnt: 1384, fault_cnt:1574 -[UP] flip: 81, stem: 17504, fault:28565. flip_cnt: 2, stem_cnt: 1384, fault_cnt:1573 -[UP] flip: 108, stem: 15046, fault:25774. flip_cnt: 2, stem_cnt: 1382, fault_cnt:1424 -[UP] flip: 387, stem: 13541, fault:23132. flip_cnt: 7, stem_cnt: 1367, fault_cnt:1283 -[UP] flip: 357, stem: 12570, fault:24434. flip_cnt: 5, stem_cnt: 1378, fault_cnt:1348 -[UP] flip: 100, stem: 14290, fault:24415. flip_cnt: 2, stem_cnt: 1378, fault_cnt:1347 -[UP] flip: 124, stem: 15191, fault:26888. flip_cnt: 2, stem_cnt: 1377, fault_cnt:1477 -[UP] flip: 124, stem: 12410, fault:27823. flip_cnt: 2, stem_cnt: 1378, fault_cnt:1519 -[UP] flip: 0, stem: 14330, fault:27823. flip_cnt: 0, stem_cnt: 1378, fault_cnt:1519 -[UP] flip: 188, stem: 13313, fault:29612. flip_cnt: 2, stem_cnt: 1375, fault_cnt:1613 -[UP] flip: 219, stem: 14450, fault:29855. flip_cnt: 3, stem_cnt: 1378, fault_cnt:1625 -[UP] flip: 166, stem: 15431, fault:29945. flip_cnt: 2, stem_cnt: 1377, fault_cnt:1628 -[UP] flip: 353, stem: 17331, fault:29869. flip_cnt: 7, stem_cnt: 1377, fault_cnt:1624 -[UP] flip: 0, stem: 14199, fault:31667. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1718 -[UP] flip: 370, stem: 15639, fault:31591. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1714 -[UP] flip: 137, stem: 14863, fault:31366. flip_cnt: 2, stem_cnt: 1385, fault_cnt:1700 -[UP] flip: 405, stem: 16623, fault:31310. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1697 -[UP] flip: 377, stem: 16820, fault:31349. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1697 -[UP] flip: 164, stem: 17981, fault:31181. flip_cnt: 3, stem_cnt: 1387, fault_cnt:1688 -[UP] flip: 255, stem: 17243, fault:31367. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1697 -[UP] flip: 164, stem: 16901, fault:31789. flip_cnt: 3, stem_cnt: 1387, fault_cnt:1718 -[UP] flip: 256, stem: 15682, fault:31757. flip_cnt: 4, stem_cnt: 1386, fault_cnt:1713 -[UP] flip: 296, stem: 17262, fault:31776. flip_cnt: 4, stem_cnt: 1386, fault_cnt:1714 -[UP] flip: 110, stem: 18501, fault:31947. flip_cnt: 3, stem_cnt: 1387, fault_cnt:1723 -[UP] flip: 116, stem: 17450, fault:30417. flip_cnt: 2, stem_cnt: 1378, fault_cnt:1642 -[UP] flip: 495, stem: 19150, fault:30341. flip_cnt: 7, stem_cnt: 1378, fault_cnt:1638 -[UP] flip: 399, stem: 20830, fault:29847. flip_cnt: 5, stem_cnt: 1378, fault_cnt:1612 -[UP] flip: 355, stem: 12491, fault:27748. flip_cnt: 4, stem_cnt: 1377, fault_cnt:1499 -[UP] flip: 0, stem: 14372, fault:27748. flip_cnt: 0, stem_cnt: 1376, fault_cnt:1499 -[UP] flip: 147, stem: 12748, fault:27607. flip_cnt: 2, stem_cnt: 1380, fault_cnt:1491 -[UP] flip: 343, stem: 14448, fault:27531. flip_cnt: 7, stem_cnt: 1380, fault_cnt:1487 -[UP] flip: 498, stem: 11135, fault:29696. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1600 -[UP] flip: 141, stem: 12835, fault:29259. flip_cnt: 3, stem_cnt: 1393, fault_cnt:1577 -[UP] flip: 592, stem: 13135, fault:29379. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1583 -[UP] flip: 179, stem: 13953, fault:30691. flip_cnt: 3, stem_cnt: 1395, fault_cnt:1652 -[UP] flip: 96, stem: 15354, fault:30596. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1647 -[UP] flip: 0, stem: 16271, fault:30711. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1653 -[UP] flip: 0, stem: 15251, fault:30828. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1658 -[UP] flip: 404, stem: 15391, fault:30794. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1656 -[UP] flip: 613, stem: 13528, fault:30335. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1631 -[UP] flip: 125, stem: 14968, fault:30278. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1628 -[UP] flip: 117, stem: 15284, fault:31703. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1703 -[UP] flip: 332, stem: 16571, fault:31418. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1688 -[UP] flip: 383, stem: 18071, fault:30601. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1645 -[UP] flip: 0, stem: 19151, fault:30601. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1645 -[UP] flip: 114, stem: 14570, fault:30518. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1639 -[UP] flip: 0, stem: 15970, fault:30518. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1639 -[UP] flip: 179, stem: 17292, fault:30408. flip_cnt: 3, stem_cnt: 1396, fault_cnt:1633 -[UP] flip: 206, stem: 15912, fault:30696. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1646 -[UP] flip: 182, stem: 14731, fault:29396. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1576 -[UP] flip: 289, stem: 16091, fault:29301. flip_cnt: 4, stem_cnt: 1397, fault_cnt:1571 -[UP] flip: 347, stem: 15036, fault:29677. flip_cnt: 4, stem_cnt: 1392, fault_cnt:1590 -[UP] flip: 444, stem: 15498, fault:30206. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1617 -[UP] flip: 0, stem: 17078, fault:30206. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1617 -[UP] flip: 104, stem: 18637, fault:30263. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1620 -[UP] flip: 476, stem: 19558, fault:30222. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1618 -[UP] flip: 151, stem: 20856, fault:30203. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1617 -[UP] flip: 369, stem: 22295, fault:30716. flip_cnt: 4, stem_cnt: 1393, fault_cnt:1644 -[UP] flip: 334, stem: 16940, fault:28648. flip_cnt: 4, stem_cnt: 1388, fault_cnt:1531 -[UP] flip: 596, stem: 18640, fault:28644. flip_cnt: 7, stem_cnt: 1388, fault_cnt:1530 -[UP] flip: 0, stem: 15560, fault:28815. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1537 -[UP] flip: 319, stem: 16958, fault:28761. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1534 -[UP] flip: 553, stem: 17818, fault:28647. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1528 -[UP] flip: 218, stem: 16781, fault:27096. flip_cnt: 3, stem_cnt: 1387, fault_cnt:1446 -[UP] flip: 368, stem: 17178, fault:28050. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1494 -[UP] flip: 245, stem: 18757, fault:27987. flip_cnt: 3, stem_cnt: 1391, fault_cnt:1490 -[UP] flip: 776, stem: 20257, fault:27925. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1486 -[UP] flip: 664, stem: 21777, fault:27849. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1482 -[UP] flip: 644, stem: 23437, fault:27773. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1478 -[UP] flip: 285, stem: 23696, fault:27830. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1481 -[UP] flip: 136, stem: 15291, fault:27545. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1462 -[UP] flip: 410, stem: 16428, fault:29647. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1574 -[UP] flip: 0, stem: 17869, fault:29609. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1572 -[UP] flip: 171, stem: 18988, fault:29628. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1573 -[UP] flip: 332, stem: 20369, fault:29913. flip_cnt: 4, stem_cnt: 1399, fault_cnt:1588 -[UP] flip: 775, stem: 21088, fault:30084. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1597 -[UP] flip: 156, stem: 22428, fault:30293. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1608 -[UP] flip: 179, stem: 23888, fault:30274. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1607 -[UP] flip: 224, stem: 20849, fault:29568. flip_cnt: 3, stem_cnt: 1399, fault_cnt:1569 -[UP] flip: 771, stem: 19127, fault:28844. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1530 -[UP] flip: 204, stem: 16481, fault:29547. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1567 -[UP] flip: 254, stem: 17881, fault:29490. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1564 -[UP] flip: 0, stem: 19222, fault:29547. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1567 -[UP] flip: 617, stem: 20602, fault:29509. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1565 -[UP] flip: 502, stem: 21662, fault:29395. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1559 -[UP] flip: 571, stem: 19223, fault:29794. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1580 -[UP] flip: 0, stem: 19385, fault:29262. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1552 -[UP] flip: 352, stem: 20805, fault:29209. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1549 -[UP] flip: 0, stem: 20965, fault:29209. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1549 -[UP] flip: 276, stem: 22104, fault:29247. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1551 -[UP] flip: 0, stem: 18566, fault:28147. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1493 -[UP] flip: 179, stem: 20146, fault:28128. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1492 -[UP] flip: 420, stem: 21604, fault:28185. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1495 -[UP] flip: 409, stem: 17084, fault:31111. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1649 -[UP] flip: 848, stem: 18504, fault:30997. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1643 -[UP] flip: 638, stem: 18984, fault:30788. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1632 -[UP] flip: 475, stem: 15950, fault:29692. flip_cnt: 4, stem_cnt: 1398, fault_cnt:1574 -[UP] flip: 0, stem: 17411, fault:29654. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1572 -[UP] flip: 385, stem: 18890, fault:29730. flip_cnt: 4, stem_cnt: 1398, fault_cnt:1576 -[UP] flip: 0, stem: 16548, fault:27356. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1451 -[UP] flip: 0, stem: 16366, fault:28097. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1490 -[UP] flip: 468, stem: 17387, fault:27964. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1483 -[UP] flip: 0, stem: 17683, fault:26900. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1427 -[UP] flip: 678, stem: 18363, fault:26919. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1428 -[UP] flip: 642, stem: 17703, fault:27052. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1435 -[UP] flip: 0, stem: 17945, fault:26596. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1411 -[UP] flip: 371, stem: 18306, fault:27033. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1434 -[UP] flip: 815, stem: 19726, fault:26957. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1430 -[UP] flip: 923, stem: 21085, fault:26577. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1410 -[UP] flip: 606, stem: 22405, fault:26520. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1407 -[UP] flip: 144, stem: 23465, fault:26463. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1404 -[UP] flip: 211, stem: 23946, fault:29161. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1546 -[UP] flip: 185, stem: 21869, fault:27926. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1481 -[UP] flip: 634, stem: 23249, fault:27869. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1478 -[UP] flip: 194, stem: 21970, fault:28021. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1486 -[UP] flip: 758, stem: 19566, fault:30244. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1603 -[UP] flip: 683, stem: 19363, fault:29921. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1586 -[UP] flip: 546, stem: 20723, fault:30491. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1616 -[UP] flip: 183, stem: 22402, fault:30396. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1611 -[UP] flip: 709, stem: 23362, fault:31954. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1693 -[UP] flip: 214, stem: 24744, fault:31346. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1661 -[UP] flip: 0, stem: 19606, fault:28852. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1528 -[UP] flip: 267, stem: 20806, fault:28833. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1527 -[UP] flip: 583, stem: 22026, fault:28776. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1524 -[UP] flip: 490, stem: 21425, fault:30190. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1598 -[UP] flip: 0, stem: 20766, fault:30015. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1589 -[UP] flip: 718, stem: 21506, fault:29958. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1586 -[UP] flip: 497, stem: 20823, fault:31821. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1684 -[UP] flip: 576, stem: 21202, fault:31859. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1686 -[UP] flip: 684, stem: 21779, fault:32448. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1717 -[UP] flip: 600, stem: 23159, fault:32372. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1713 -[UP] flip: 852, stem: 24499, fault:32372. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1713 -[UP] flip: 524, stem: 25679, fault:32809. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1736 -[UP] flip: 225, stem: 23997, fault:32810. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1736 -[UP] flip: 177, stem: 24619, fault:30493. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1614 -[UP] flip: 184, stem: 25840, fault:30475. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1613 -[UP] flip: 569, stem: 27000, fault:30418. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1610 -[UP] flip: 540, stem: 28081, fault:30133. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1595 -[UP] flip: 429, stem: 28261, fault:29962. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1586 -[UP] flip: 723, stem: 28964, fault:29772. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1576 -[UP] flip: 717, stem: 29884, fault:29696. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1572 -[UP] flip: 0, stem: 29784, fault:29658. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1570 -[UP] flip: 746, stem: 29885, fault:29487. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1561 -[UP] flip: 194, stem: 25626, fault:30247. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1601 -[UP] flip: 393, stem: 24549, fault:31577. flip_cnt: 3, stem_cnt: 1399, fault_cnt:1671 -[UP] flip: 263, stem: 23044, fault:32299. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1709 -[UP] flip: 308, stem: 24265, fault:32242. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1706 -[UP] flip: 327, stem: 25244, fault:32337. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1711 -[UP] flip: 0, stem: 26724, fault:32223. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1705 -[UP] flip: 662, stem: 26124, fault:32147. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1701 -[UP] flip: 641, stem: 27143, fault:32033. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1695 -[UP] flip: 330, stem: 26042, fault:31539. flip_cnt: 3, stem_cnt: 1406, fault_cnt:1669 -[UP] flip: 851, stem: 27082, fault:31463. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1665 -[UP] flip: 471, stem: 27522, fault:31406. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1662 -[UP] flip: 219, stem: 26941, fault:31710. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1678 -[UP] flip: 845, stem: 26579, fault:32014. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1694 -[UP] flip: 369, stem: 27799, fault:31843. flip_cnt: 3, stem_cnt: 1409, fault_cnt:1685 -[UP] flip: 684, stem: 25720, fault:31254. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1653 -[UP] flip: 809, stem: 26660, fault:31140. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1647 -[UP] flip: 471, stem: 27840, fault:30957. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1637 -[UP] flip: 0, stem: 29119, fault:30995. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1639 -[UP] flip: 462, stem: 27498, fault:31455. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1663 -[UP] flip: 470, stem: 28797, fault:31474. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1664 -[UP] flip: 615, stem: 28013, fault:32064. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1695 -[UP] flip: 779, stem: 28113, fault:32311. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1708 -[UP] flip: 812, stem: 29373, fault:32330. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1709 -[UP] flip: 805, stem: 29733, fault:32596. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1723 -[UP] flip: 641, stem: 30453, fault:32729. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1730 -[UP] flip: 823, stem: 30572, fault:32330. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1709 -[UP] flip: 1261, stem: 29935, fault:29607. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1565 -[UP] flip: 443, stem: 30577, fault:29607. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1565 -[UP] flip: 0, stem: 29124, fault:29514. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1560 -[UP] flip: 693, stem: 30164, fault:29457. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1557 -[UP] flip: 874, stem: 26665, fault:29187. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1543 -[UP] flip: 820, stem: 26745, fault:29073. flip_cnt: 6, stem_cnt: 1403, fault_cnt:1537 -[UP] flip: 0, stem: 26085, fault:30651. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1620 -[UP] flip: 994, stem: 21401, fault:31777. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1679 -[UP] flip: 897, stem: 20901, fault:31796. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1680 -[UP] flip: 203, stem: 22121, fault:31777. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1679 -[UP] flip: 0, stem: 21340, fault:30960. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1636 -[UP] flip: 284, stem: 22561, fault:30903. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1633 -[UP] flip: 0, stem: 20578, fault:31777. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1679 -[UP] flip: 774, stem: 20374, fault:32214. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1702 -[UP] flip: 721, stem: 21474, fault:32119. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1697 -[UP] flip: 806, stem: 22195, fault:31929. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1687 -[UP] flip: 909, stem: 22675, fault:31891. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1685 -[UP] flip: 592, stem: 20433, fault:32138. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1698 -[UP] flip: 174, stem: 21533, fault:32081. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1695 -[UP] flip: 0, stem: 20951, fault:32005. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1691 -[UP] flip: 441, stem: 21969, fault:31967. flip_cnt: 3, stem_cnt: 1419, fault_cnt:1689 -[UP] flip: 784, stem: 23109, fault:31948. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1688 -[UP] flip: 531, stem: 24070, fault:31910. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1686 -[UP] flip: 148, stem: 24169, fault:31967. flip_cnt: 1, stem_cnt: 1419, fault_cnt:1689 -[UP] flip: 0, stem: 19097, fault:30486. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1611 -[UP] flip: 414, stem: 20377, fault:30429. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1608 -[UP] flip: 0, stem: 19477, fault:30411. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1607 -[UP] flip: 0, stem: 20757, fault:30411. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1607 -[UP] flip: 0, stem: 22077, fault:30411. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1607 -[UP] flip: 449, stem: 19616, fault:25699. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1359 -[UP] flip: 757, stem: 20836, fault:25680. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1358 -[UP] flip: 303, stem: 22056, fault:25471. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1347 -[UP] flip: 0, stem: 23456, fault:25471. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1347 -[UP] flip: 686, stem: 18245, fault:27681. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1463 -[UP] flip: 747, stem: 19505, fault:27586. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1458 -[UP] flip: 1396, stem: 18441, fault:26598. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1406 -[UP] flip: 570, stem: 18738, fault:25876. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1368 -[UP] flip: 1180, stem: 19078, fault:26161. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1383 -[UP] flip: 1071, stem: 20498, fault:26047. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1377 -[UP] flip: 306, stem: 19438, fault:29980. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1584 -[UP] flip: 757, stem: 20818, fault:29942. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1582 -[UP] flip: 1038, stem: 22218, fault:29790. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1574 -[UP] flip: 1023, stem: 21339, fault:31804. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1680 -[UP] flip: 540, stem: 22799, fault:31709. flip_cnt: 3, stem_cnt: 1409, fault_cnt:1675 -[UP] flip: 964, stem: 20841, fault:30778. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1626 -[UP] flip: 230, stem: 22201, fault:30778. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1626 -[UP] flip: 747, stem: 23761, fault:30702. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1622 -[UP] flip: 268, stem: 24440, fault:30683. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1621 -[UP] flip: 249, stem: 25799, fault:30626. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1618 -[UP] flip: 1040, stem: 22620, fault:30436. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1608 -[UP] flip: 290, stem: 22381, fault:30360. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1604 -[UP] flip: 695, stem: 22321, fault:30664. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1620 -[UP] flip: 416, stem: 23701, fault:30569. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1615 -[UP] flip: 0, stem: 23404, fault:28555. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1509 -[UP] flip: 327, stem: 24604, fault:28498. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1506 -[UP] flip: 515, stem: 21965, fault:28080. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1484 -[UP] flip: 0, stem: 22907, fault:28460. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1504 -[UP] flip: 1166, stem: 23728, fault:28479. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1505 -[UP] flip: 580, stem: 23328, fault:29277. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1547 -[UP] flip: 0, stem: 24668, fault:29258. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1546 -[UP] flip: 1093, stem: 25408, fault:29220. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1544 -[UP] flip: 322, stem: 20322, fault:28612. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1512 -[UP] flip: 391, stem: 19143, fault:26788. flip_cnt: 3, stem_cnt: 1405, fault_cnt:1416 -[UP] flip: 1171, stem: 19302, fault:27415. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1449 -[UP] flip: 0, stem: 19580, fault:27339. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1445 -[UP] flip: 0, stem: 20961, fault:27320. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1444 -[UP] flip: 0, stem: 19224, fault:28821. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1523 -[UP] flip: 1077, stem: 18304, fault:28783. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1521 -[UP] flip: 1067, stem: 19844, fault:28631. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1513 -[UP] flip: 305, stem: 18781, fault:30113. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1591 -[UP] flip: 880, stem: 20021, fault:30037. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1587 -[UP] flip: 0, stem: 21341, fault:29942. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1582 -[UP] flip: 751, stem: 22601, fault:29885. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1579 -[UP] flip: 300, stem: 23841, fault:29714. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1570 -[UP] flip: 1137, stem: 25101, fault:29657. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1567 -[UP] flip: 872, stem: 22522, fault:28536. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1508 -[UP] flip: 1443, stem: 21061, fault:28118. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1486 -[UP] flip: 556, stem: 22281, fault:28289. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1495 -[UP] flip: 1077, stem: 23321, fault:28213. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1491 -[UP] flip: 723, stem: 24280, fault:28080. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1484 -[UP] flip: 839, stem: 24659, fault:28460. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1504 -[UP] flip: 0, stem: 26020, fault:28460. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1504 -[UP] flip: 1039, stem: 23704, fault:28593. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1511 -[UP] flip: 0, stem: 25184, fault:28593. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1511 -[UP] flip: 357, stem: 26323, fault:28555. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1509 -[UP] flip: 890, stem: 25179, fault:28954. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1530 -[UP] flip: 1221, stem: 26197, fault:28840. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1524 -[UP] flip: 1185, stem: 27477, fault:28973. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1531 -[UP] flip: 991, stem: 28537, fault:28916. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1528 -[UP] flip: 330, stem: 29678, fault:28821. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1523 -[UP] flip: 504, stem: 31018, fault:28764. flip_cnt: 3, stem_cnt: 1410, fault_cnt:1520 -[UP] flip: 334, stem: 32239, fault:28745. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1519 -[UP] flip: 937, stem: 32979, fault:28707. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1517 -[UP] flip: 1156, stem: 33918, fault:28764. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1520 -[UP] flip: 1334, stem: 34739, fault:28783. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1521 -[UP] flip: 274, stem: 33918, fault:30436. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1608 -[UP] flip: 827, stem: 34878, fault:30379. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1605 -[UP] flip: 747, stem: 27833, fault:29600. flip_cnt: 3, stem_cnt: 1395, fault_cnt:1564 -[UP] flip: 296, stem: 28751, fault:29581. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1563 -[UP] flip: 1175, stem: 30371, fault:29505. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1559 -[UP] flip: 0, stem: 31011, fault:29296. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1548 -[UP] flip: 1151, stem: 27013, fault:26408. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1396 -[UP] flip: 874, stem: 27592, fault:26066. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1378 -[UP] flip: 1560, stem: 19275, fault:23635. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1250 -[UP] flip: 0, stem: 19957, fault:23464. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1241 -[UP] flip: 377, stem: 20656, fault:23445. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1240 -[UP] flip: 0, stem: 17461, fault:21925. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1160 -[UP] flip: 855, stem: 18441, fault:22514. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1191 -[UP] flip: 536, stem: 19920, fault:22324. flip_cnt: 3, stem_cnt: 1388, fault_cnt:1181 -[UP] flip: 992, stem: 20700, fault:22267. flip_cnt: 7, stem_cnt: 1388, fault_cnt:1178 -[UP] flip: 1242, stem: 21639, fault:22381. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1184 -[UP] flip: 1571, stem: 18701, fault:23882. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1263 -[UP] flip: 747, stem: 16517, fault:24813. flip_cnt: 4, stem_cnt: 1391, fault_cnt:1312 -[UP] flip: 0, stem: 18317, fault:24110. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1275 -[UP] flip: 1317, stem: 18976, fault:23977. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1268 -[UP] flip: 1211, stem: 19956, fault:23901. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1264 -[UP] flip: 317, stem: 18254, fault:22115. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1170 -[UP] flip: 1214, stem: 19015, fault:22058. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1167 -[UP] flip: 356, stem: 15171, fault:23427. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1239 -[UP] flip: 376, stem: 16551, fault:23408. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1238 -[UP] flip: 998, stem: 15649, fault:24396. flip_cnt: 4, stem_cnt: 1399, fault_cnt:1290 -[UP] flip: 725, stem: 16969, fault:24377. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1289 -[UP] flip: 1057, stem: 17725, fault:24757. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1309 -[UP] flip: 619, stem: 15085, fault:25916. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1370 -[UP] flip: 366, stem: 16406, fault:25859. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1367 -[UP] flip: 0, stem: 17487, fault:25859. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1367 -[UP] flip: 713, stem: 17809, fault:25118. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1328 -[UP] flip: 360, stem: 16546, fault:25270. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1336 -[UP] flip: 1695, stem: 17346, fault:25346. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1340 -[UP] flip: 396, stem: 18547, fault:25441. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1345 -[UP] flip: 345, stem: 16842, fault:25783. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1363 -[UP] flip: 1301, stem: 18162, fault:25669. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1357 -[UP] flip: 360, stem: 19142, fault:25650. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1356 -[UP] flip: 502, stem: 20062, fault:25574. flip_cnt: 3, stem_cnt: 1406, fault_cnt:1352 -[UP] flip: 1314, stem: 21162, fault:25498. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1348 -[UP] flip: 0, stem: 22304, fault:25498. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1348 -[UP] flip: 0, stem: 23485, fault:25498. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1348 -[UP] flip: 0, stem: 23084, fault:25498. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1348 -[UP] flip: 596, stem: 18136, fault:28438. flip_cnt: 3, stem_cnt: 1412, fault_cnt:1502 -[UP] flip: 131, stem: 16636, fault:30281. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1599 -[UP] flip: 0, stem: 17635, fault:30281. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1599 -[UP] flip: 1004, stem: 17512, fault:31183. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1647 -[UP] flip: 294, stem: 18913, fault:31126. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1644 -[UP] flip: 689, stem: 20353, fault:31088. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1642 -[UP] flip: 0, stem: 20213, fault:30936. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1634 -[UP] flip: 1455, stem: 17796, fault:26452. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1398 -[UP] flip: 0, stem: 18057, fault:26272. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1388 -[UP] flip: 779, stem: 19037, fault:25968. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1372 -[UP] flip: 1583, stem: 18319, fault:25170. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1330 -[UP] flip: 0, stem: 18518, fault:25018. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1322 -[UP] flip: 781, stem: 19319, fault:24961. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1319 -[UP] flip: 342, stem: 20580, fault:24638. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1302 -[UP] flip: 1464, stem: 21940, fault:24562. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1298 -[UP] flip: 0, stem: 20339, fault:24353. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1287 -[UP] flip: 624, stem: 19674, fault:26709. flip_cnt: 3, stem_cnt: 1414, fault_cnt:1411 -[UP] flip: 1240, stem: 19982, fault:27792. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1468 -[UP] flip: 0, stem: 20122, fault:23916. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1264 -[UP] flip: 1154, stem: 19285, fault:27058. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1429 -[UP] flip: 327, stem: 20225, fault:27001. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1426 -[UP] flip: 1646, stem: 21265, fault:26830. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1417 -[UP] flip: 1128, stem: 22065, fault:26792. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1415 -[UP] flip: 347, stem: 19719, fault:29243. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1544 -[UP] flip: 790, stem: 20059, fault:29224. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1543 -[UP] flip: 1421, stem: 21259, fault:29148. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1539 -[UP] flip: 1896, stem: 21679, fault:28928. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1527 -[UP] flip: 0, stem: 20154, fault:28054. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1481 -[UP] flip: 644, stem: 19659, fault:27997. flip_cnt: 3, stem_cnt: 1409, fault_cnt:1478 -[UP] flip: 1762, stem: 20899, fault:27921. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1474 -[UP] flip: 513, stem: 16481, fault:28112. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1484 -[UP] flip: 0, stem: 17680, fault:27846. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1470 -[UP] flip: 783, stem: 19181, fault:27808. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1468 -[UP] flip: 0, stem: 18660, fault:27542. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1454 -[UP] flip: 1564, stem: 19800, fault:27466. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1450 -[UP] flip: 1269, stem: 20421, fault:27181. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1435 -[UP] flip: 0, stem: 21621, fault:27143. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1433 -[UP] flip: 1109, stem: 22701, fault:27181. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1435 -[UP] flip: 1555, stem: 18014, fault:30297. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1599 -[UP] flip: 0, stem: 19254, fault:31266. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1650 -[UP] flip: 1348, stem: 20874, fault:31228. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1648 -[UP] flip: 753, stem: 21914, fault:30031. flip_cnt: 3, stem_cnt: 1414, fault_cnt:1585 -[UP] flip: 0, stem: 21876, fault:30088. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1588 -[UP] flip: 464, stem: 19354, fault:30829. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1627 -[UP] flip: 421, stem: 20295, fault:30810. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1626 -[UP] flip: 1496, stem: 18794, fault:29632. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1564 -[UP] flip: 1620, stem: 19614, fault:29366. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1550 -[UP] flip: 1262, stem: 19716, fault:29100. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1536 -[UP] flip: 790, stem: 20897, fault:29005. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1531 -[UP] flip: 1707, stem: 22137, fault:28682. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1514 -[UP] flip: 644, stem: 18314, fault:25890. flip_cnt: 3, stem_cnt: 1414, fault_cnt:1367 -[UP] flip: 0, stem: 19102, fault:25852. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1365 -[UP] flip: 349, stem: 20082, fault:25491. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1346 -[UP] flip: 0, stem: 20622, fault:25491. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1346 -[UP] flip: 750, stem: 21704, fault:25434. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1343 -[UP] flip: 1838, stem: 22864, fault:25453. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1344 -[UP] flip: 402, stem: 23583, fault:25909. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1368 -[UP] flip: 346, stem: 23099, fault:28227. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1490 -[UP] flip: 1205, stem: 24379, fault:28664. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1513 -[UP] flip: 411, stem: 23498, fault:29120. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1537 -[UP] flip: 435, stem: 24699, fault:29063. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1534 -[UP] flip: 858, stem: 25919, fault:29082. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1535 -[UP] flip: 0, stem: 25919, fault:29082. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1535 -[UP] flip: 726, stem: 22296, fault:27372. flip_cnt: 3, stem_cnt: 1412, fault_cnt:1445 -[UP] flip: 1126, stem: 23336, fault:27372. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1445 -[UP] flip: 1270, stem: 24256, fault:26289. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1388 -[UP] flip: 178, stem: 25056, fault:26536. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1401 -[UP] flip: 1421, stem: 20797, fault:25871. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1366 -[UP] flip: 1688, stem: 21958, fault:25529. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1348 -[UP] flip: 463, stem: 23398, fault:25301. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1336 -[UP] flip: 325, stem: 24839, fault:25244. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1333 -[UP] flip: 1067, stem: 25538, fault:25168. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1329 -[UP] flip: 843, stem: 26397, fault:25320. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1337 -[UP] flip: 1390, stem: 27477, fault:25510. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1347 -[UP] flip: 797, stem: 29138, fault:25472. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1345 -[UP] flip: 0, stem: 21981, fault:23629. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1248 -[UP] flip: 0, stem: 20701, fault:21805. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1152 -[UP] flip: 1080, stem: 20884, fault:21102. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1115 -[UP] flip: 0, stem: 22324, fault:22318. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1179 -[UP] flip: 0, stem: 23003, fault:22375. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1182 -[UP] flip: 1894, stem: 24423, fault:22299. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1178 -[UP] flip: 875, stem: 25403, fault:22280. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1177 -[UP] flip: 693, stem: 25465, fault:22185. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1172 -[UP] flip: 944, stem: 21666, fault:22964. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1213 -[UP] flip: 1457, stem: 22408, fault:22774. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1203 -[UP] flip: 295, stem: 22306, fault:22831. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1206 -[UP] flip: 1505, stem: 22669, fault:22527. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1190 -[UP] flip: 1613, stem: 22648, fault:23021. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1216 -[UP] flip: 1165, stem: 24088, fault:22052. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1165 -[UP] flip: 0, stem: 24969, fault:21995. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1162 -[UP] flip: 0, stem: 26250, fault:21995. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1162 -[UP] flip: 662, stem: 27230, fault:21919. flip_cnt: 3, stem_cnt: 1398, fault_cnt:1158 -[UP] flip: 306, stem: 27451, fault:18613. flip_cnt: 2, stem_cnt: 1397, fault_cnt:984 -[UP] flip: 1215, stem: 19234, fault:22110. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1168 -[UP] flip: 1129, stem: 20594, fault:22034. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1164 -[UP] flip: 1525, stem: 22154, fault:21958. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1160 -[UP] flip: 1219, stem: 23314, fault:21787. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1151 -[UP] flip: 1141, stem: 24594, fault:21654. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1144 -[UP] flip: 0, stem: 21570, fault:23061. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1218 -[UP] flip: 2028, stem: 22950, fault:22985. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1214 -[UP] flip: 0, stem: 23377, fault:23157. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1223 -[UP] flip: 0, stem: 15056, fault:17534. flip_cnt: 0, stem_cnt: 1392, fault_cnt:927 -[UP] flip: 0, stem: 16757, fault:17535. flip_cnt: 0, stem_cnt: 1391, fault_cnt:927 -[UP] flip: 515, stem: 18077, fault:17516. flip_cnt: 2, stem_cnt: 1391, fault_cnt:926 -[UP] flip: 0, stem: 17497, fault:22190. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1172 -[UP] flip: 1539, stem: 18999, fault:22171. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1171 -[UP] flip: 580, stem: 17395, fault:22647. flip_cnt: 3, stem_cnt: 1393, fault_cnt:1196 -[UP] flip: 1497, stem: 18514, fault:22572. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1192 -[UP] flip: 1706, stem: 19834, fault:22496. flip_cnt: 6, stem_cnt: 1394, fault_cnt:1188 -[UP] flip: 1796, stem: 17770, fault:23238. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1227 -[UP] flip: 372, stem: 19010, fault:23371. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1234 -[UP] flip: 0, stem: 20450, fault:23372. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1234 -[UP] flip: 685, stem: 21990, fault:23316. flip_cnt: 3, stem_cnt: 1398, fault_cnt:1231 -[UP] flip: 0, stem: 17894, fault:22822. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1205 -[UP] flip: 1518, stem: 19554, fault:22746. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1201 -[UP] flip: 1942, stem: 18372, fault:22917. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1210 -[UP] flip: 1144, stem: 15617, fault:22024. flip_cnt: 4, stem_cnt: 1391, fault_cnt:1163 -[UP] flip: 1358, stem: 17197, fault:22100. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1167 -[UP] flip: 369, stem: 16933, fault:22043. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1164 -[UP] flip: 670, stem: 17756, fault:21663. flip_cnt: 3, stem_cnt: 1392, fault_cnt:1144 -[UP] flip: 0, stem: 19116, fault:21625. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1142 -[UP] flip: 983, stem: 20236, fault:21853. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1154 -[UP] flip: 1834, stem: 19674, fault:21948. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1159 -[UP] flip: 0, stem: 17275, fault:23107. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1220 -[UP] flip: 574, stem: 17675, fault:23088. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1219 -[UP] flip: 0, stem: 15834, fault:22898. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1209 -[UP] flip: 228, stem: 15555, fault:20751. flip_cnt: 1, stem_cnt: 1393, fault_cnt:1096 -[UP] flip: 0, stem: 16733, fault:21188. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1119 -[UP] flip: 1421, stem: 17852, fault:21245. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1122 -[UP] flip: 0, stem: 18893, fault:23335. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1232 -[UP] flip: 1406, stem: 19974, fault:23278. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1229 -[UP] flip: 1757, stem: 17731, fault:23221. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1226 -[UP] flip: 362, stem: 18870, fault:23221. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1226 -[UP] flip: 476, stem: 18088, fault:22784. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1203 -[UP] flip: 484, stem: 17468, fault:24570. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1297 -[UP] flip: 1944, stem: 18209, fault:24494. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1293 -[UP] flip: 1359, stem: 18048, fault:23354. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1233 -[UP] flip: 1244, stem: 19528, fault:23278. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1229 -[UP] flip: 0, stem: 16906, fault:21720. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1147 -[UP] flip: 1824, stem: 16665, fault:21492. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1135 -[UP] flip: 466, stem: 17124, fault:20675. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1092 -[UP] flip: 0, stem: 17380, fault:20713. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1094 -[UP] flip: 801, stem: 17684, fault:20523. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1084 -[UP] flip: 0, stem: 18984, fault:20523. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1084 -[UP] flip: 0, stem: 19664, fault:20523. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1084 -[UP] flip: 0, stem: 20243, fault:19934. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1053 -[UP] flip: 521, stem: 21344, fault:19877. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1050 -[UP] flip: 2028, stem: 19206, fault:19573. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1034 -[UP] flip: 0, stem: 20666, fault:19573. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1034 -[UP] flip: 2265, stem: 22004, fault:19497. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1030 -[UP] flip: 0, stem: 19862, fault:21036. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1111 -[UP] flip: 1393, stem: 19726, fault:20808. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1099 -[UP] flip: 0, stem: 20807, fault:20732. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1095 -[UP] flip: 2352, stem: 21247, fault:20751. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1096 -[UP] flip: 1735, stem: 17270, fault:21796. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1151 -[UP] flip: 0, stem: 18388, fault:21625. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1142 -[UP] flip: 1861, stem: 19607, fault:21549. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1138 -[UP] flip: 0, stem: 20325, fault:21644. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1143 -[UP] flip: 434, stem: 20867, fault:21188. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1119 -[UP] flip: 0, stem: 20947, fault:22556. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1191 -[UP] flip: 316, stem: 20924, fault:24399. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1288 -[UP] flip: 1170, stem: 22063, fault:25539. flip_cnt: 4, stem_cnt: 1405, fault_cnt:1348 -[UP] flip: 0, stem: 23383, fault:25615. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1352 -[UP] flip: 1989, stem: 23460, fault:25596. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1351 -[UP] flip: 509, stem: 24738, fault:25634. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1353 -[UP] flip: 655, stem: 25458, fault:25748. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1359 -[UP] flip: 2006, stem: 26618, fault:25672. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1355 -[UP] flip: 1034, stem: 22236, fault:26717. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1410 -[UP] flip: 587, stem: 22398, fault:26546. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1401 -[UP] flip: 1873, stem: 22558, fault:26470. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1397 -[UP] flip: 839, stem: 21123, fault:25729. flip_cnt: 3, stem_cnt: 1405, fault_cnt:1358 -[UP] flip: 1970, stem: 21903, fault:25672. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1355 -[UP] flip: 768, stem: 23163, fault:25387. flip_cnt: 3, stem_cnt: 1405, fault_cnt:1340 -[UP] flip: 1772, stem: 19343, fault:25786. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1361 -[UP] flip: 1118, stem: 18841, fault:25748. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1359 -[UP] flip: 1272, stem: 19941, fault:25786. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1361 -[UP] flip: 2629, stem: 20580, fault:25235. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1332 -[UP] flip: 0, stem: 21220, fault:25235. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1332 -[UP] flip: 498, stem: 22360, fault:25178. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1329 -[UP] flip: 0, stem: 17358, fault:26223. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1384 -[UP] flip: 1836, stem: 18558, fault:26166. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1381 -[UP] flip: 1509, stem: 15821, fault:25596. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1351 -[UP] flip: 461, stem: 17541, fault:25539. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1348 -[UP] flip: 1406, stem: 18860, fault:25596. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1351 -[UP] flip: 0, stem: 20020, fault:26299. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1388 -[UP] flip: 506, stem: 19980, fault:26793. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1414 -[UP] flip: 1975, stem: 19961, fault:26014. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1373 -[UP] flip: 0, stem: 20560, fault:25843. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1364 -[UP] flip: 0, stem: 20920, fault:25862. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1365 -[UP] flip: 2114, stem: 19521, fault:26641. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1406 -[UP] flip: 1894, stem: 21041, fault:26318. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1389 -[UP] flip: 517, stem: 22200, fault:26261. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1386 -[UP] flip: 1945, stem: 19222, fault:26698. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1409 -[UP] flip: 1089, stem: 19099, fault:25767. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1360 -[UP] flip: 1981, stem: 19678, fault:25976. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1371 -[UP] flip: 1674, stem: 20398, fault:25843. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1364 -[UP] flip: 634, stem: 22199, fault:24019. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1268 -[UP] flip: 1080, stem: 22979, fault:23962. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1265 -[UP] flip: 0, stem: 21135, fault:20789. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1098 -[UP] flip: 1130, stem: 21436, fault:20580. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1087 -[UP] flip: 461, stem: 22617, fault:20580. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1087 -[UP] flip: 2552, stem: 21758, fault:21929. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1158 -[UP] flip: 0, stem: 23018, fault:21929. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1158 -[UP] flip: 685, stem: 22643, fault:20219. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1068 -[UP] flip: 1111, stem: 23764, fault:20181. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1066 -[UP] flip: 577, stem: 21560, fault:22253. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1175 -[UP] flip: 2265, stem: 23140, fault:22272. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1176 -[UP] flip: 0, stem: 24460, fault:22614. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1194 -[UP] flip: 801, stem: 23599, fault:21018. flip_cnt: 4, stem_cnt: 1409, fault_cnt:1110 -[UP] flip: 1594, stem: 24260, fault:20885. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1103 -[UP] flip: 617, stem: 23900, fault:21303. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1125 -[UP] flip: 2088, stem: 20660, fault:21380. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1129 -[UP] flip: 607, stem: 21080, fault:21437. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1132 -[UP] flip: 0, stem: 21582, fault:23679. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1250 -[UP] flip: 939, stem: 22762, fault:23622. flip_cnt: 3, stem_cnt: 1406, fault_cnt:1247 -[UP] flip: 446, stem: 23923, fault:23565. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1244 -[UP] flip: 0, stem: 23822, fault:23546. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1243 -[UP] flip: 1584, stem: 24742, fault:23413. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1236 -[UP] flip: 1981, stem: 22257, fault:24040. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1269 -[UP] flip: 1862, stem: 22437, fault:23128. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1221 -[UP] flip: 0, stem: 22478, fault:22957. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1212 -[UP] flip: 0, stem: 23658, fault:22957. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1212 -[UP] flip: 0, stem: 24796, fault:22957. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1212 -[UP] flip: 2178, stem: 20858, fault:22748. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1201 -[UP] flip: 652, stem: 21978, fault:22729. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1200 -[UP] flip: 0, stem: 23138, fault:22729. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1200 -[UP] flip: 0, stem: 24159, fault:22786. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1203 -[UP] flip: 1376, stem: 22515, fault:22938. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1211 -[UP] flip: 0, stem: 21395, fault:22976. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1213 -[UP] flip: 0, stem: 21275, fault:22976. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1213 -[UP] flip: 1308, stem: 22395, fault:22938. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1211 -[UP] flip: 629, stem: 23195, fault:22881. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1208 -[UP] flip: 0, stem: 23875, fault:22900. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1209 -[UP] flip: 620, stem: 24836, fault:22843. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1206 -[UP] flip: 627, stem: 24717, fault:22729. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1200 -[UP] flip: 660, stem: 25680, fault:22710. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1199 -[UP] flip: 1206, stem: 26281, fault:22596. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1193 -[UP] flip: 1103, stem: 27402, fault:22558. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1191 -[UP] flip: 1554, stem: 25940, fault:17523. flip_cnt: 5, stem_cnt: 1408, fault_cnt:926 -[UP] flip: 0, stem: 26700, fault:17827. flip_cnt: 0, stem_cnt: 1408, fault_cnt:942 -[UP] flip: 1070, stem: 28121, fault:17789. flip_cnt: 4, stem_cnt: 1407, fault_cnt:940 -[UP] flip: 776, stem: 20793, fault:24401. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1288 -[UP] flip: 2113, stem: 21273, fault:24534. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1295 -[UP] flip: 1026, stem: 22474, fault:24496. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1293 -[UP] flip: 1618, stem: 23555, fault:20563. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1086 -[UP] flip: 406, stem: 24514, fault:19575. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1034 -[UP] flip: 0, stem: 21093, fault:25845. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1364 -[UP] flip: 2393, stem: 19353, fault:25807. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1362 -[UP] flip: 0, stem: 20153, fault:25256. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1333 -[UP] flip: 768, stem: 20433, fault:25142. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1327 -[UP] flip: 885, stem: 21454, fault:25104. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1325 -[UP] flip: 801, stem: 22475, fault:24021. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1268 -[UP] flip: 571, stem: 23496, fault:23964. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1265 -[UP] flip: 0, stem: 21639, fault:22311. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1178 -[UP] flip: 2293, stem: 20717, fault:22330. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1179 -[UP] flip: 911, stem: 21857, fault:22197. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1172 -[UP] flip: 632, stem: 21176, fault:22121. flip_cnt: 3, stem_cnt: 1412, fault_cnt:1168 -[UP] flip: 586, stem: 20159, fault:21247. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1122 -[UP] flip: 0, stem: 21519, fault:21437. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1132 -[UP] flip: 564, stem: 22178, fault:21418. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1131 -[UP] flip: 0, stem: 22999, fault:21361. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1128 -[UP] flip: 0, stem: 16852, fault:19784. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1045 -[UP] flip: 796, stem: 17071, fault:20601. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1088 -[UP] flip: 1307, stem: 17772, fault:20430. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1079 -[UP] flip: 1361, stem: 17811, fault:20392. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1077 -[UP] flip: 0, stem: 18811, fault:20658. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1091 -[UP] flip: 464, stem: 19892, fault:20715. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1094 -[UP] flip: 2380, stem: 21093, fault:21000. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1109 -[UP] flip: 0, stem: 21931, fault:21000. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1109 -[UP] flip: 2490, stem: 16256, fault:26150. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1380 -[UP] flip: 1213, stem: 16876, fault:26264. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1386 -[UP] flip: 1995, stem: 17396, fault:26321. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1389 -[UP] flip: 686, stem: 18415, fault:27746. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1464 -[UP] flip: 2239, stem: 18953, fault:27727. flip_cnt: 6, stem_cnt: 1415, fault_cnt:1463 -[UP] flip: 1271, stem: 19775, fault:27746. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1464 -[UP] flip: 1741, stem: 20353, fault:27632. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1458 -[UP] flip: 1232, stem: 21014, fault:27651. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1459 -[UP] flip: 1698, stem: 19134, fault:26587. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1403 -[UP] flip: 0, stem: 19632, fault:26834. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1416 -[UP] flip: 656, stem: 19609, fault:26872. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1418 -[UP] flip: 1272, stem: 18969, fault:26929. flip_cnt: 4, stem_cnt: 1419, fault_cnt:1421 -[UP] flip: 890, stem: 17763, fault:25504. flip_cnt: 3, stem_cnt: 1425, fault_cnt:1346 -[UP] flip: 0, stem: 18783, fault:24155. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1275 -[UP] flip: 0, stem: 20003, fault:24155. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1275 -[UP] flip: 0, stem: 20341, fault:24421. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1289 -[UP] flip: 2453, stem: 14518, fault:23889. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1261 -[UP] flip: 2016, stem: 15639, fault:23566. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1244 -[UP] flip: 0, stem: 16519, fault:23509. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1241 -[UP] flip: 0, stem: 17399, fault:23509. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1241 -[UP] flip: 1567, stem: 18199, fault:23452. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1238 -[UP] flip: 1274, stem: 16977, fault:23243. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1227 -[UP] flip: 634, stem: 16857, fault:23186. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1224 -[UP] flip: 0, stem: 17935, fault:24440. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1290 -[UP] flip: 1377, stem: 18715, fault:24402. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1288 -[UP] flip: 732, stem: 19115, fault:24326. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1284 -[UP] flip: 0, stem: 19676, fault:24383. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1287 -[UP] flip: 915, stem: 19619, fault:24307. flip_cnt: 3, stem_cnt: 1429, fault_cnt:1283 -[UP] flip: 763, stem: 19938, fault:24269. flip_cnt: 3, stem_cnt: 1430, fault_cnt:1281 -[UP] flip: 2341, stem: 19958, fault:25181. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1329 -[UP] flip: 1453, stem: 19137, fault:27727. flip_cnt: 3, stem_cnt: 1431, fault_cnt:1463 -[UP] flip: 1711, stem: 18316, fault:27689. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1461 -[UP] flip: 0, stem: 18937, fault:27689. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1461 -[UP] flip: 1385, stem: 15118, fault:28240. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1490 -[UP] flip: 0, stem: 15938, fault:28411. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1499 -[UP] flip: 0, stem: 16259, fault:30102. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1588 -[UP] flip: 1842, stem: 17159, fault:30026. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1584 -[UP] flip: 1786, stem: 17919, fault:29589. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1561 -[UP] flip: 1065, stem: 18178, fault:29627. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1563 -[UP] flip: 1465, stem: 18737, fault:29684. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1566 -[UP] flip: 1368, stem: 19355, fault:29855. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1575 -[UP] flip: 415, stem: 19973, fault:30007. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1583 -[UP] flip: 0, stem: 20753, fault:30102. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1588 -[UP] flip: 1717, stem: 21533, fault:30045. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1585 -[UP] flip: 559, stem: 22052, fault:29836. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1574 -[UP] flip: 3007, stem: 22972, fault:29760. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1570 -[UP] flip: 1113, stem: 23532, fault:29703. flip_cnt: 3, stem_cnt: 1436, fault_cnt:1567 -[UP] flip: 1721, stem: 24092, fault:29627. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1563 -[UP] flip: 505, stem: 24373, fault:29551. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1559 -[UP] flip: 847, stem: 25152, fault:30482. flip_cnt: 3, stem_cnt: 1436, fault_cnt:1608 -[UP] flip: 0, stem: 25912, fault:30482. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1608 -[UP] flip: 1290, stem: 26472, fault:30444. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1606 -[UP] flip: 804, stem: 27072, fault:30463. flip_cnt: 3, stem_cnt: 1436, fault_cnt:1607 -[UP] flip: 2545, stem: 23997, fault:28677. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1513 -[UP] flip: 1836, stem: 24857, fault:28620. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1510 -[UP] flip: 1657, stem: 25238, fault:28506. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1504 -[UP] flip: 2071, stem: 23877, fault:27366. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1444 -[UP] flip: 2316, stem: 22758, fault:26910. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1420 -[UP] flip: 2127, stem: 23638, fault:26834. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1416 -[UP] flip: 1408, stem: 23878, fault:27917. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1473 -[UP] flip: 2182, stem: 24338, fault:27879. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1471 -[UP] flip: 863, stem: 25016, fault:27860. flip_cnt: 3, stem_cnt: 1432, fault_cnt:1470 -[UP] flip: 1864, stem: 25476, fault:27822. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1468 -[UP] flip: 1992, stem: 23856, fault:28544. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1506 -[UP] flip: 559, stem: 20957, fault:28012. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1478 -[UP] flip: 680, stem: 20474, fault:28506. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1504 -[UP] flip: 538, stem: 21174, fault:28449. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1501 -[UP] flip: 0, stem: 21634, fault:28582. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1508 -[UP] flip: 2179, stem: 18194, fault:28525. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1505 -[UP] flip: 1880, stem: 19095, fault:26910. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1420 -[UP] flip: 2654, stem: 19516, fault:26739. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1411 -[UP] flip: 2221, stem: 20356, fault:26682. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1408 -[UP] flip: 1703, stem: 21336, fault:26625. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1405 -[UP] flip: 0, stem: 21936, fault:26549. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1401 -[UP] flip: 796, stem: 16093, fault:27100. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1430 -[UP] flip: 674, stem: 14993, fault:27100. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1430 -[UP] flip: 1478, stem: 15552, fault:27138. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1432 -[UP] flip: 0, stem: 16132, fault:27328. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1442 -[UP] flip: 2476, stem: 16872, fault:27271. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1439 -[UP] flip: 2174, stem: 13355, fault:27062. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1428 -[UP] flip: 0, stem: 14195, fault:26986. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1424 -[UP] flip: 1802, stem: 14533, fault:27024. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1426 -[UP] flip: 2257, stem: 15213, fault:27062. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1428 -[UP] flip: 2325, stem: 15933, fault:27005. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1425 -[UP] flip: 2645, stem: 16733, fault:26948. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1422 -[UP] flip: 2046, stem: 16692, fault:26910. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1420 -[UP] flip: 1143, stem: 15552, fault:26891. flip_cnt: 3, stem_cnt: 1436, fault_cnt:1419 -[UP] flip: 0, stem: 17792, fault:26891. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1419 -[UP] flip: 0, stem: 17134, fault:26948. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1422 -[UP] flip: 1337, stem: 17592, fault:27005. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1425 -[UP] flip: 1492, stem: 18532, fault:29570. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1560 -[UP] flip: 2038, stem: 19072, fault:29494. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1556 -[UP] flip: 686, stem: 19213, fault:29437. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1553 -[UP] flip: 2614, stem: 19673, fault:29380. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1550 -[UP] flip: 1750, stem: 19891, fault:29437. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1553 -[UP] flip: 0, stem: 20571, fault:29817. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1573 -[UP] flip: 3398, stem: 19671, fault:31945. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1685 -[UP] flip: 760, stem: 20052, fault:29741. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1569 -[UP] flip: 2617, stem: 20512, fault:29665. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1565 -[UP] flip: 2292, stem: 21072, fault:29608. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1562 -[UP] flip: 1314, stem: 21671, fault:29437. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1553 -[UP] flip: 2497, stem: 15755, fault:30330. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1600 -[UP] flip: 0, stem: 16875, fault:29855. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1575 -[UP] flip: 564, stem: 15152, fault:30938. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1632 -[UP] flip: 1405, stem: 15552, fault:30938. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1632 -[UP] flip: 3102, stem: 16272, fault:30843. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1627 -[UP] flip: 708, stem: 15909, fault:30767. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1623 -[UP] flip: 0, stem: 17029, fault:30919. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1631 -[UP] flip: 3376, stem: 16466, fault:34795. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1835 -[UP] flip: 1412, stem: 17146, fault:34738. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1832 -[UP] flip: 1650, stem: 17405, fault:34472. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1818 -[UP] flip: 1485, stem: 18145, fault:32705. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1725 -[UP] flip: 739, stem: 18605, fault:32724. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1726 -[UP] flip: 1998, stem: 19365, fault:34396. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1814 -[UP] flip: 2634, stem: 19885, fault:34244. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1806 -[UP] flip: 827, stem: 18766, fault:34263. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1807 -[UP] flip: 0, stem: 19186, fault:32458. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1712 -[UP] flip: 2715, stem: 19467, fault:32040. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1690 -[UP] flip: 0, stem: 20687, fault:32040. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1690 -[UP] flip: 401, stem: 21006, fault:32021. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1689 -[UP] flip: 0, stem: 21826, fault:32021. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1689 -[UP] flip: 1635, stem: 22166, fault:31945. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1685 -[UP] flip: 2220, stem: 22046, fault:28259. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1491 -[UP] flip: 1601, stem: 22526, fault:27936. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1474 -[UP] flip: 2444, stem: 22166, fault:22426. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1184 -[UP] flip: 1116, stem: 22906, fault:22445. flip_cnt: 3, stem_cnt: 1442, fault_cnt:1185 -[UP] flip: 1814, stem: 23246, fault:22540. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1190 -[UP] flip: 3430, stem: 22247, fault:22388. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1182 -[UP] flip: 3181, stem: 22327, fault:22312. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1178 -[UP] flip: 2517, stem: 22747, fault:22255. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1175 -[UP] flip: 2773, stem: 23107, fault:22198. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1172 -[UP] flip: 725, stem: 23368, fault:22141. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1169 -[UP] flip: 2032, stem: 24248, fault:22084. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1166 -[UP] flip: 0, stem: 24549, fault:22046. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1164 -[UP] flip: 2723, stem: 25169, fault:21970. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1160 -[UP] flip: 680, stem: 25451, fault:21856. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1154 -[UP] flip: 0, stem: 26371, fault:21856. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1154 -[UP] flip: 2749, stem: 27211, fault:21799. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1151 -[UP] flip: 1505, stem: 28151, fault:21818. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1152 -[UP] flip: 2205, stem: 28251, fault:21742. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1148 -[UP] flip: 0, stem: 29191, fault:21704. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1146 -[UP] flip: 0, stem: 28831, fault:21704. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1146 -[UP] flip: 2456, stem: 29091, fault:21647. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1143 -[UP] flip: 0, stem: 29470, fault:21647. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1143 -[UP] flip: 2213, stem: 28450, fault:21647. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1143 -[UP] flip: 0, stem: 26590, fault:21609. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1141 -[UP] flip: 3334, stem: 27350, fault:21533. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1137 -[UP] flip: 0, stem: 26870, fault:28088. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1482 -[UP] flip: 0, stem: 25830, fault:28088. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1482 -[UP] flip: 539, stem: 23632, fault:27784. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1466 -[UP] flip: 1871, stem: 24133, fault:27765. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1465 -[UP] flip: 2668, stem: 13535, fault:21286. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1124 -[UP] flip: 731, stem: 14856, fault:21191. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1119 -[UP] flip: 658, stem: 15416, fault:21172. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1118 -[UP] flip: 2803, stem: 16076, fault:21134. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1116 -[UP] flip: 1135, stem: 16336, fault:21077. flip_cnt: 3, stem_cnt: 1432, fault_cnt:1113 -[UP] flip: 767, stem: 16894, fault:21096. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1114 -[UP] flip: 0, stem: 17834, fault:21096. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1114 -[UP] flip: 0, stem: 18235, fault:20982. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1108 -[UP] flip: 1269, stem: 17794, fault:20868. flip_cnt: 3, stem_cnt: 1434, fault_cnt:1102 -[UP] flip: 672, stem: 13676, fault:28126. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1484 -[UP] flip: 0, stem: 16036, fault:28126. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1484 -[UP] flip: 2542, stem: 16976, fault:28088. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1482 -[UP] flip: 0, stem: 17757, fault:28088. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1482 -[UP] flip: 839, stem: 19218, fault:28031. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1479 -[UP] flip: 1947, stem: 17818, fault:27974. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1476 -[UP] flip: 894, stem: 18598, fault:27955. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1475 -[UP] flip: 830, stem: 20358, fault:27936. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1474 -[UP] flip: 462, stem: 20839, fault:27879. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1471 -[UP] flip: 759, stem: 17682, fault:28202. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1488 -[UP] flip: 593, stem: 18541, fault:28335. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1495 -[UP] flip: 0, stem: 20861, fault:28658. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1512 -[UP] flip: 0, stem: 20541, fault:28658. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1512 -[UP] flip: 0, stem: 21201, fault:28658. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1512 -[UP] flip: 2294, stem: 14816, fault:29304. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1546 -[UP] flip: 0, stem: 16036, fault:28734. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1516 -[UP] flip: 2570, stem: 16075, fault:28639. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1511 -[UP] flip: 0, stem: 15176, fault:29000. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1530 -[UP] flip: 750, stem: 15917, fault:28981. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1529 -[UP] flip: 0, stem: 16596, fault:29722. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1568 -[UP] flip: 2059, stem: 17356, fault:29665. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1565 -[UP] flip: 781, stem: 17816, fault:29570. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1560 -[UP] flip: 1828, stem: 18256, fault:29532. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1558 -[UP] flip: 0, stem: 18956, fault:24801. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1309 -[UP] flip: 1958, stem: 19596, fault:24763. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1307 -[UP] flip: 830, stem: 20316, fault:24782. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1308 -[UP] flip: 1117, stem: 15255, fault:24307. flip_cnt: 4, stem_cnt: 1433, fault_cnt:1283 -[UP] flip: 1328, stem: 15112, fault:25086. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1324 -[UP] flip: 1464, stem: 16052, fault:25162. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1328 -[UP] flip: 683, stem: 17233, fault:25105. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1325 -[UP] flip: 1947, stem: 18073, fault:25048. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1322 -[UP] flip: 0, stem: 17656, fault:24953. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1317 -[UP] flip: 2597, stem: 18696, fault:24877. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1313 -[UP] flip: 1258, stem: 19517, fault:24801. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1309 -[UP] flip: 1874, stem: 19996, fault:25219. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1331 -[UP] flip: 2743, stem: 20896, fault:23376. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1234 -[UP] flip: 0, stem: 20556, fault:23509. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1241 -[UP] flip: 2605, stem: 20833, fault:23547. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1243 -[UP] flip: 2506, stem: 19431, fault:27081. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1429 -[UP] flip: 2885, stem: 19429, fault:27024. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1426 -[UP] flip: 2864, stem: 19589, fault:26948. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1422 -[UP] flip: 1400, stem: 19967, fault:26929. flip_cnt: 4, stem_cnt: 1441, fault_cnt:1421 -[UP] flip: 3071, stem: 20787, fault:27233. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1437 -[UP] flip: 2036, stem: 19047, fault:26511. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1399 -[UP] flip: 0, stem: 17906, fault:26701. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1409 -[UP] flip: 498, stem: 16908, fault:31831. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1679 -[UP] flip: 2800, stem: 17488, fault:31774. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1676 -[UP] flip: 799, stem: 18728, fault:31755. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1675 -[UP] flip: 2656, stem: 17008, fault:31717. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1673 -[UP] flip: 2825, stem: 15209, fault:31128. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1642 -[UP] flip: 0, stem: 15607, fault:31128. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1642 -[UP] flip: 0, stem: 16247, fault:31128. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1642 -[UP] flip: 705, stem: 13588, fault:31926. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1684 -[UP] flip: 1876, stem: 14868, fault:31888. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1682 -[UP] flip: 1868, stem: 14589, fault:31641. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1669 -[UP] flip: 2557, stem: 16130, fault:26891. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1419 -[UP] flip: 809, stem: 15951, fault:25903. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1367 -[UP] flip: 2927, stem: 16389, fault:25960. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1370 -[UP] flip: 0, stem: 16269, fault:29380. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1550 -[UP] flip: 3488, stem: 15489, fault:29304. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1546 -[UP] flip: 718, stem: 16169, fault:29247. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1543 -[UP] flip: 2755, stem: 16769, fault:29171. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1539 -[UP] flip: 1852, stem: 17368, fault:28734. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1516 -[UP] flip: 3754, stem: 18609, fault:28487. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1503 -[UP] flip: 2301, stem: 18429, fault:28772. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1518 -[UP] flip: 1526, stem: 18790, fault:28810. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1520 -[UP] flip: 2779, stem: 19150, fault:28753. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1517 -[UP] flip: 822, stem: 19911, fault:28696. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1514 -[UP] flip: 2686, stem: 19033, fault:28677. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1513 -[UP] flip: 2019, stem: 18413, fault:28962. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1528 -[UP] flip: 1121, stem: 19013, fault:28810. flip_cnt: 3, stem_cnt: 1435, fault_cnt:1520 -[UP] flip: 2025, stem: 19593, fault:28734. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1516 -[UP] flip: 1940, stem: 20113, fault:28589. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1508 -[UP] flip: 1226, stem: 19093, fault:27316. flip_cnt: 3, stem_cnt: 1435, fault_cnt:1441 -[UP] flip: 746, stem: 19753, fault:27297. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1440 -[UP] flip: 1688, stem: 20353, fault:27278. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1439 -[UP] flip: 2027, stem: 16872, fault:24580. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1297 -[UP] flip: 520, stem: 13851, fault:25926. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1368 -[UP] flip: 698, stem: 14732, fault:25907. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1367 -[UP] flip: 2583, stem: 14013, fault:25812. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1362 -[UP] flip: 0, stem: 14893, fault:25774. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1360 -[UP] flip: 0, stem: 15893, fault:25774. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1360 -[UP] flip: 0, stem: 15734, fault:25680. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1355 -[UP] flip: 1572, stem: 16094, fault:25642. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1353 -[UP] flip: 1209, stem: 15995, fault:25319. flip_cnt: 3, stem_cnt: 1433, fault_cnt:1336 -[UP] flip: 1440, stem: 17136, fault:25397. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1340 -[UP] flip: 0, stem: 18256, fault:25359. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1338 -[UP] flip: 722, stem: 16774, fault:26005. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1372 -[UP] flip: 0, stem: 17374, fault:26119. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1378 -[UP] flip: 2902, stem: 18814, fault:26081. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1376 -[UP] flip: 1014, stem: 17510, fault:31629. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1668 -[UP] flip: 0, stem: 18070, fault:31629. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1668 -[UP] flip: 1583, stem: 18669, fault:31686. flip_cnt: 4, stem_cnt: 1439, fault_cnt:1671 -[UP] flip: 1898, stem: 19529, fault:31762. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1675 -[UP] flip: 0, stem: 20469, fault:31724. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1673 -[UP] flip: 846, stem: 21069, fault:31667. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1670 -[UP] flip: 1799, stem: 22488, fault:31743. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1674 -[UP] flip: 0, stem: 22827, fault:31743. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1674 -[UP] flip: 701, stem: 23247, fault:31762. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1675 -[UP] flip: 2033, stem: 19589, fault:31800. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1677 -[UP] flip: 767, stem: 20209, fault:31819. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1678 -[UP] flip: 714, stem: 20770, fault:31800. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1677 -[UP] flip: 759, stem: 21491, fault:31743. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1674 -[UP] flip: 1534, stem: 16951, fault:32047. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1690 -[UP] flip: 2110, stem: 17070, fault:33301. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1756 -[UP] flip: 0, stem: 18430, fault:33225. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1752 -[UP] flip: 3330, stem: 18750, fault:33168. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1749 -[UP] flip: 0, stem: 18871, fault:32769. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1728 -[UP] flip: 503, stem: 19812, fault:32712. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1725 -[UP] flip: 2773, stem: 20030, fault:32674. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1723 -[UP] flip: 1131, stem: 19810, fault:32617. flip_cnt: 3, stem_cnt: 1438, fault_cnt:1720 -[UP] flip: 1561, stem: 19592, fault:32712. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1725 -[UP] flip: 1660, stem: 19672, fault:31572. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1665 -[UP] flip: 2065, stem: 20592, fault:31382. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1655 -[UP] flip: 2125, stem: 20872, fault:31268. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1649 -[UP] flip: 0, stem: 21673, fault:31268. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1649 -[UP] flip: 0, stem: 22393, fault:31268. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1649 -[UP] flip: 713, stem: 22574, fault:31192. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1645 -[UP] flip: 0, stem: 23434, fault:31192. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1645 -[UP] flip: 1738, stem: 23793, fault:31211. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1646 -[UP] flip: 2660, stem: 24533, fault:31154. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1643 -[UP] flip: 0, stem: 25233, fault:31154. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1643 -[UP] flip: 874, stem: 23733, fault:31591. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1666 -[UP] flip: 0, stem: 24693, fault:31591. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1666 -[UP] flip: 2326, stem: 25133, fault:31534. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1663 -[UP] flip: 2012, stem: 25953, fault:31477. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1660 -[UP] flip: 1961, stem: 25573, fault:31249. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1648 -[UP] flip: 1450, stem: 24912, fault:31192. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1645 -[UP] flip: 1317, stem: 22875, fault:29900. flip_cnt: 3, stem_cnt: 1433, fault_cnt:1577 -[UP] flip: 789, stem: 23376, fault:29881. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1576 -[UP] flip: 915, stem: 24976, fault:29862. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1575 -[UP] flip: 0, stem: 28416, fault:29824. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1573 -[UP] flip: 2981, stem: 29117, fault:29710. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1567 -[UP] flip: 2134, stem: 30017, fault:29596. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1561 -[UP] flip: 929, stem: 30998, fault:29425. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1552 -[UP] flip: 1572, stem: 29040, fault:26062. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1375 -[UP] flip: 0, stem: 26543, fault:28266. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1491 -[UP] flip: 0, stem: 28123, fault:28266. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1491 -[UP] flip: 0, stem: 24141, fault:28133. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1484 -[UP] flip: 861, stem: 24960, fault:28152. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1485 -[UP] flip: 0, stem: 24820, fault:29121. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1536 -[UP] flip: 2127, stem: 25620, fault:29064. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1533 -[UP] flip: 2911, stem: 26740, fault:28874. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1523 -[UP] flip: 3117, stem: 25040, fault:28855. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1522 -[UP] flip: 3042, stem: 25760, fault:28703. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1514 -[UP] flip: 1742, stem: 18321, fault:28038. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1479 -[UP] flip: 0, stem: 18220, fault:28095. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1482 -[UP] flip: 0, stem: 18058, fault:28304. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1493 -[UP] flip: 2991, stem: 17996, fault:28380. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1497 -[UP] flip: 2071, stem: 17997, fault:28456. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1501 -[UP] flip: 0, stem: 18437, fault:28437. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1500 -[UP] flip: 1897, stem: 18797, fault:28361. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1496 -[UP] flip: 0, stem: 19097, fault:28095. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1482 -[UP] flip: 1804, stem: 20737, fault:28114. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1483 -[UP] flip: 1813, stem: 20775, fault:28247. flip_cnt: 4, stem_cnt: 1433, fault_cnt:1490 -[UP] flip: 2306, stem: 21235, fault:28342. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1495 -[UP] flip: 1381, stem: 21354, fault:28494. flip_cnt: 4, stem_cnt: 1434, fault_cnt:1503 -[UP] flip: 0, stem: 21754, fault:28627. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1510 -[UP] flip: 2143, stem: 22454, fault:28570. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1507 -[UP] flip: 0, stem: 22417, fault:27886. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1471 -[UP] flip: 3234, stem: 21316, fault:27259. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1438 -[UP] flip: 3851, stem: 22736, fault:27183. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1434 -[UP] flip: 0, stem: 23176, fault:27183. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1434 -[UP] flip: 2960, stem: 22576, fault:33016. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1741 -[UP] flip: 2177, stem: 24136, fault:32959. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1738 -[UP] flip: 3048, stem: 23796, fault:32997. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1740 -[UP] flip: 3237, stem: 24916, fault:32921. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1736 -[UP] flip: 2632, stem: 24917, fault:32826. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1731 -[UP] flip: 1743, stem: 25316, fault:33054. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1743 -[UP] flip: 1822, stem: 26116, fault:33073. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1744 -[UP] flip: 0, stem: 27196, fault:33073. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1744 -[UP] flip: 2094, stem: 27036, fault:32997. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1740 -[UP] flip: 0, stem: 27896, fault:32997. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1740 -[UP] flip: 3247, stem: 28696, fault:33111. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1746 -[UP] flip: 2251, stem: 28356, fault:33035. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1742 -[UP] flip: 0, stem: 28976, fault:33035. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1742 -[UP] flip: 0, stem: 29596, fault:33035. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1742 -[UP] flip: 2877, stem: 30216, fault:32959. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1738 -[UP] flip: 3364, stem: 28216, fault:32864. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1733 -[UP] flip: 1803, stem: 28418, fault:33149. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1748 -[UP] flip: 2886, stem: 28458, fault:33130. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1747 -[UP] flip: 932, stem: 27295, fault:33111. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1746 -[UP] flip: 0, stem: 27733, fault:33111. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1746 -[UP] flip: 565, stem: 27675, fault:32997. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1740 -[UP] flip: 766, stem: 28075, fault:32940. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1737 -[UP] flip: 2149, stem: 28156, fault:32845. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1732 -[UP] flip: 2513, stem: 28716, fault:32674. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1723 -[UP] flip: 3150, stem: 23798, fault:31952. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1685 -[UP] flip: 0, stem: 24958, fault:31914. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1683 -[UP] flip: 3116, stem: 26118, fault:31838. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1679 -[UP] flip: 848, stem: 22761, fault:30223. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1594 -[UP] flip: 2384, stem: 21683, fault:30451. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1606 -[UP] flip: 2987, stem: 21065, fault:30337. flip_cnt: 7, stem_cnt: 1423, fault_cnt:1600 -[UP] flip: 3845, stem: 22045, fault:22642. flip_cnt: 7, stem_cnt: 1423, fault_cnt:1195 -[UP] flip: 0, stem: 22706, fault:22642. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1195 -[UP] flip: 3223, stem: 22060, fault:22718. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1199 -[UP] flip: 2746, stem: 22420, fault:23307. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1230 -[UP] flip: 1934, stem: 22799, fault:23212. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1225 -[UP] flip: 0, stem: 24079, fault:23174. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1223 -[UP] flip: 0, stem: 24759, fault:22908. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1209 -[UP] flip: 0, stem: 25599, fault:22908. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1209 -[UP] flip: 1039, stem: 25159, fault:22927. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1210 -[UP] flip: 0, stem: 25639, fault:22927. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1210 -[UP] flip: 0, stem: 24837, fault:23250. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1227 -[UP] flip: 606, stem: 24598, fault:23193. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1224 -[UP] flip: 0, stem: 26018, fault:23193. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1224 -[UP] flip: 2963, stem: 26878, fault:23155. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1222 -[UP] flip: 0, stem: 27998, fault:23155. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1222 -[UP] flip: 2151, stem: 27757, fault:23136. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1221 -[UP] flip: 0, stem: 27597, fault:23174. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1223 -[UP] flip: 1349, stem: 23957, fault:24941. flip_cnt: 3, stem_cnt: 1431, fault_cnt:1316 -[UP] flip: 3123, stem: 24759, fault:24713. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1304 -[UP] flip: 652, stem: 25299, fault:23801. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1256 -[UP] flip: 0, stem: 25979, fault:23801. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1256 -[UP] flip: 1453, stem: 26457, fault:23858. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1259 -[UP] flip: 2228, stem: 27078, fault:24637. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1300 -[UP] flip: 0, stem: 27498, fault:24599. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1298 -[UP] flip: 2318, stem: 26898, fault:24751. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1306 -[UP] flip: 4201, stem: 24738, fault:23079. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1218 -[UP] flip: 4259, stem: 21440, fault:22528. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1189 -[UP] flip: 3332, stem: 20580, fault:23212. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1225 -[UP] flip: 1374, stem: 21140, fault:23269. flip_cnt: 3, stem_cnt: 1428, fault_cnt:1228 -[UP] flip: 1723, stem: 21200, fault:23155. flip_cnt: 4, stem_cnt: 1428, fault_cnt:1222 -[UP] flip: 1776, stem: 21279, fault:25169. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1328 -[UP] flip: 3971, stem: 22057, fault:30698. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1619 -[UP] flip: 1248, stem: 23398, fault:30660. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1617 -[UP] flip: 0, stem: 24358, fault:30641. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1616 -[UP] flip: 3118, stem: 24618, fault:30565. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1612 -[UP] flip: 796, stem: 25378, fault:29957. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1580 -[UP] flip: 3226, stem: 26938, fault:33605. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1772 -[UP] flip: 2240, stem: 25916, fault:33738. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1779 -[UP] flip: 790, stem: 27177, fault:33719. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1778 -[UP] flip: 891, stem: 27898, fault:33662. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1775 -[UP] flip: 857, stem: 29439, fault:33605. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1772 -[UP] flip: 3880, stem: 30999, fault:33529. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1768 -[UP] flip: 4340, stem: 27517, fault:34270. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1807 -[UP] flip: 3291, stem: 27477, fault:34137. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1800 -[UP] flip: 1581, stem: 28477, fault:34080. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1797 -[UP] flip: 0, stem: 29317, fault:34080. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1797 -[UP] flip: 2889, stem: 30437, fault:34004. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1793 -[UP] flip: 2234, stem: 24672, fault:35676. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1881 -[UP] flip: 3224, stem: 24852, fault:35847. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1890 -[UP] flip: 2284, stem: 25572, fault:35581. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1876 -[UP] flip: 1867, stem: 26331, fault:35410. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1867 -[UP] flip: 2214, stem: 27131, fault:35372. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1865 -[UP] flip: 3372, stem: 27471, fault:35334. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1863 -[UP] flip: 986, stem: 28672, fault:35315. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1862 -[UP] flip: 3359, stem: 29072, fault:35258. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1859 -[UP] flip: 3202, stem: 25134, fault:34289. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1808 -[UP] flip: 708, stem: 26015, fault:34099. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1798 -[UP] flip: 1608, stem: 22235, fault:33434. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1763 -[UP] flip: 852, stem: 23116, fault:33339. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1758 -[UP] flip: 3269, stem: 23016, fault:33282. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1755 -[UP] flip: 4128, stem: 20936, fault:32807. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1730 -[UP] flip: 826, stem: 21956, fault:32750. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1727 -[UP] flip: 1984, stem: 22235, fault:32750. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1727 -[UP] flip: 4375, stem: 19694, fault:32180. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1697 -[UP] flip: 2327, stem: 20334, fault:32085. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1692 -[UP] flip: 2928, stem: 21174, fault:32047. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1690 -[UP] flip: 474, stem: 21853, fault:32066. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1691 -[UP] flip: 2112, stem: 22313, fault:32199. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1698 -[UP] flip: 3826, stem: 23193, fault:32123. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1694 -[UP] flip: 747, stem: 24154, fault:32104. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1693 -[UP] flip: 2882, stem: 23754, fault:32028. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1689 -[UP] flip: 1905, stem: 21572, fault:31705. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1672 -[UP] flip: 2188, stem: 21750, fault:32351. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1706 -[UP] flip: 2129, stem: 22230, fault:32750. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1727 -[UP] flip: 2323, stem: 22530, fault:32674. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1723 -[UP] flip: 3700, stem: 18932, fault:27943. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1474 -[UP] flip: 3324, stem: 20192, fault:27905. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1472 -[UP] flip: 3237, stem: 19472, fault:27924. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1473 -[UP] flip: 0, stem: 20171, fault:28076. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1481 -[UP] flip: 3121, stem: 20991, fault:28038. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1479 -[UP] flip: 0, stem: 21811, fault:28038. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1479 -[UP] flip: 3443, stem: 21870, fault:27962. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1475 -[UP] flip: 833, stem: 23171, fault:27943. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1474 -[UP] flip: 2182, stem: 23511, fault:27905. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1472 -[UP] flip: 0, stem: 23711, fault:27867. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1470 -[UP] flip: 0, stem: 24271, fault:27867. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1470 -[UP] flip: 1617, stem: 24692, fault:27829. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1468 -[UP] flip: 0, stem: 25271, fault:27639. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1458 -[UP] flip: 466, stem: 24589, fault:27620. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1457 -[UP] flip: 2938, stem: 22830, fault:27563. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1454 -[UP] flip: 767, stem: 23610, fault:27544. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1453 -[UP] flip: 2106, stem: 22188, fault:27449. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1448 -[UP] flip: 641, stem: 22409, fault:27924. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1473 -[UP] flip: 1574, stem: 22550, fault:27886. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1471 -[UP] flip: 2635, stem: 23350, fault:27677. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1460 -[UP] flip: 0, stem: 24030, fault:27677. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1460 -[UP] flip: 3745, stem: 21730, fault:27810. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1467 -[UP] flip: 2207, stem: 22150, fault:27221. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1436 -[UP] flip: 2000, stem: 22071, fault:27069. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1428 -[UP] flip: 0, stem: 21592, fault:27373. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1444 -[UP] flip: 2221, stem: 22512, fault:27297. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1440 -[UP] flip: 2394, stem: 22992, fault:26822. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1415 -[UP] flip: 4548, stem: 21771, fault:30337. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1600 -[UP] flip: 1554, stem: 23193, fault:30299. flip_cnt: 4, stem_cnt: 1435, fault_cnt:1598 -[UP] flip: 1925, stem: 24813, fault:30185. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1592 -[UP] flip: 3083, stem: 25893, fault:29900. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1577 -[UP] flip: 944, stem: 26632, fault:29881. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1576 -[UP] flip: 4358, stem: 21947, fault:34802. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1835 -[UP] flip: 2348, stem: 22587, fault:34612. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1825 -[UP] flip: 2219, stem: 23227, fault:33966. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1791 -[UP] flip: 3354, stem: 23127, fault:33757. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1780 -[UP] flip: 2351, stem: 22966, fault:33738. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1779 -[UP] flip: 1559, stem: 22326, fault:33662. flip_cnt: 4, stem_cnt: 1442, fault_cnt:1775 -[UP] flip: 757, stem: 20787, fault:33548. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1769 -[UP] flip: 2041, stem: 21047, fault:33491. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1766 -[UP] flip: 1890, stem: 21747, fault:33453. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1764 -[UP] flip: 1888, stem: 22024, fault:32085. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1692 -[UP] flip: 3402, stem: 20745, fault:32313. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1704 -[UP] flip: 0, stem: 20563, fault:32085. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1692 -[UP] flip: 0, stem: 21503, fault:32085. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1692 -[UP] flip: 4595, stem: 21843, fault:32009. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1688 -[UP] flip: 0, stem: 22403, fault:32009. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1688 -[UP] flip: 2054, stem: 20783, fault:32009. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1688 -[UP] flip: 2353, stem: 22743, fault:34479. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1818 -[UP] flip: 0, stem: 23324, fault:34441. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1816 -[UP] flip: 947, stem: 22282, fault:33966. flip_cnt: 2, stem_cnt: 1446, fault_cnt:1791 -[UP] flip: 3794, stem: 22722, fault:33985. flip_cnt: 7, stem_cnt: 1446, fault_cnt:1792 -[UP] flip: 2242, stem: 22999, fault:34403. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1814 -[UP] flip: 1472, stem: 23779, fault:34840. flip_cnt: 4, stem_cnt: 1449, fault_cnt:1837 -[UP] flip: 0, stem: 23919, fault:35296. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1861 -[UP] flip: 0, stem: 23919, fault:35296. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1861 -[UP] flip: 1038, stem: 23959, fault:35220. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1857 -[UP] flip: 0, stem: 23259, fault:35220. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1857 -[UP] flip: 2690, stem: 23419, fault:35277. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1860 -[UP] flip: 792, stem: 23701, fault:34973. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1844 -[UP] flip: 1069, stem: 23742, fault:34916. flip_cnt: 2, stem_cnt: 1446, fault_cnt:1841 -[UP] flip: 997, stem: 23403, fault:34859. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1838 -[UP] flip: 3289, stem: 24404, fault:34783. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1834 -[UP] flip: 2932, stem: 24504, fault:34365. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1812 -[UP] flip: 4129, stem: 25444, fault:34289. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1808 -[UP] flip: 3523, stem: 24644, fault:34232. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1805 -[UP] flip: 0, stem: 22204, fault:33814. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1783 -[UP] flip: 0, stem: 22924, fault:33814. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1783 -[UP] flip: 2974, stem: 24124, fault:33833. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1784 -[UP] flip: 3068, stem: 22283, fault:34023. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1794 -[UP] flip: 1754, stem: 21302, fault:33966. flip_cnt: 4, stem_cnt: 1446, fault_cnt:1791 -[UP] flip: 2781, stem: 21862, fault:34346. flip_cnt: 7, stem_cnt: 1446, fault_cnt:1811 -[UP] flip: 1957, stem: 21922, fault:34213. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1804 -[UP] flip: 3960, stem: 21123, fault:34099. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1798 -[UP] flip: 3843, stem: 20783, fault:34137. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1800 -[UP] flip: 4512, stem: 20943, fault:34213. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1804 -[UP] flip: 0, stem: 21924, fault:34213. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1804 -[UP] flip: 0, stem: 21426, fault:34213. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1804 -[UP] flip: 1848, stem: 21347, fault:34156. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1801 -[UP] flip: 1472, stem: 21587, fault:33016. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1741 -[UP] flip: 0, stem: 22387, fault:33016. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1741 -[UP] flip: 0, stem: 21468, fault:32940. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1737 -[UP] flip: 536, stem: 21887, fault:32959. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1738 -[UP] flip: 1892, stem: 21927, fault:33092. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1745 -[UP] flip: 2093, stem: 22367, fault:32997. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1740 -[UP] flip: 1352, stem: 22187, fault:30527. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1610 -[UP] flip: 3300, stem: 22567, fault:30451. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1606 -[UP] flip: 3019, stem: 22805, fault:30166. flip_cnt: 4, stem_cnt: 1443, fault_cnt:1591 -[UP] flip: 0, stem: 22505, fault:30185. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1592 -[UP] flip: 3944, stem: 22385, fault:30109. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1588 -[UP] flip: 2304, stem: 22585, fault:30033. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1584 -[UP] flip: 4488, stem: 23086, fault:29767. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1570 -[UP] flip: 3648, stem: 23265, fault:29691. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1566 -[UP] flip: 0, stem: 21787, fault:29729. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1568 -[UP] flip: 3659, stem: 22847, fault:29672. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1565 -[UP] flip: 0, stem: 24187, fault:29672. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1565 -[UP] flip: 1818, stem: 25707, fault:29615. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1562 -[UP] flip: 0, stem: 26547, fault:29615. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1562 -[UP] flip: 0, stem: 23627, fault:30052. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1585 -[UP] flip: 0, stem: 24407, fault:30052. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1585 -[UP] flip: 0, stem: 25049, fault:29995. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1582 -[UP] flip: 3079, stem: 26149, fault:29919. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1578 -[UP] flip: 0, stem: 25369, fault:29520. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1557 -[UP] flip: 2001, stem: 23607, fault:30584. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1613 -[UP] flip: 0, stem: 23728, fault:30584. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1613 -[UP] flip: 1706, stem: 23305, fault:33111. flip_cnt: 4, stem_cnt: 1443, fault_cnt:1746 -[UP] flip: 0, stem: 20965, fault:33111. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1746 -[UP] flip: 3935, stem: 21705, fault:33035. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1742 -[UP] flip: 0, stem: 22465, fault:33035. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1742 -[UP] flip: 2018, stem: 21126, fault:32788. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1729 -[UP] flip: 0, stem: 20827, fault:30014. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1583 -[UP] flip: 2724, stem: 20987, fault:29957. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1580 -[UP] flip: 0, stem: 22268, fault:29938. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1579 -[UP] flip: 3475, stem: 21948, fault:29862. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1575 -[UP] flip: 972, stem: 22587, fault:29767. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1570 -[UP] flip: 0, stem: 22707, fault:29767. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1570 -[UP] flip: 982, stem: 23308, fault:29672. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1565 -[UP] flip: 0, stem: 23847, fault:29672. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1565 -[UP] flip: 4767, stem: 24127, fault:29596. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1561 -[UP] flip: 4650, stem: 24667, fault:29520. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1557 -[UP] flip: 0, stem: 25367, fault:29520. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1557 -[UP] flip: 884, stem: 25906, fault:29539. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1558 -[UP] flip: 778, stem: 26467, fault:30622. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1615 -[UP] flip: 3226, stem: 27267, fault:30546. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1611 -[UP] flip: 1600, stem: 27808, fault:30299. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1598 -[UP] flip: 0, stem: 29108, fault:30166. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1591 -[UP] flip: 1387, stem: 27109, fault:33016. flip_cnt: 3, stem_cnt: 1439, fault_cnt:1741 -[UP] flip: 1121, stem: 26268, fault:33073. flip_cnt: 3, stem_cnt: 1440, fault_cnt:1744 -[UP] flip: 1711, stem: 27788, fault:32902. flip_cnt: 3, stem_cnt: 1440, fault_cnt:1735 -[UP] flip: 1038, stem: 29549, fault:32845. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1732 -[UP] flip: 3921, stem: 30189, fault:32788. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1729 -[UP] flip: 791, stem: 30911, fault:32731. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1726 -[UP] flip: 0, stem: 31611, fault:32731. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1726 -[UP] flip: 761, stem: 32391, fault:32674. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1723 -[UP] flip: 1477, stem: 32291, fault:32617. flip_cnt: 3, stem_cnt: 1437, fault_cnt:1720 -[UP] flip: 4249, stem: 33131, fault:32541. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1716 -[UP] flip: 2738, stem: 30833, fault:32389. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1708 -[UP] flip: 2307, stem: 31013, fault:32218. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1699 -[UP] flip: 3307, stem: 28673, fault:32104. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1693 -[UP] flip: 2448, stem: 28633, fault:30983. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1634 -[UP] flip: 4684, stem: 29453, fault:29957. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1580 -[UP] flip: 0, stem: 30293, fault:29957. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1580 -[UP] flip: 0, stem: 30873, fault:29957. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1580 -[UP] flip: 1939, stem: 32012, fault:29938. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1579 -[UP] flip: 0, stem: 34332, fault:29938. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1579 -[UP] flip: 0, stem: 31293, fault:29957. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1580 -[UP] flip: 831, stem: 31672, fault:29976. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1581 -[UP] flip: 0, stem: 32291, fault:30565. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1612 -[UP] flip: 2280, stem: 31251, fault:30546. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1611 -[UP] flip: 2555, stem: 26927, fault:30755. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1622 -[UP] flip: 846, stem: 28528, fault:30983. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1634 -[UP] flip: 3144, stem: 26750, fault:30850. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1627 -[UP] flip: 2527, stem: 25089, fault:30204. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1593 -[UP] flip: 2044, stem: 26228, fault:30413. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1604 -[UP] flip: 0, stem: 26767, fault:31002. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1635 -[UP] flip: 0, stem: 27046, fault:31002. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1635 -[UP] flip: 3274, stem: 27426, fault:30926. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1631 -[UP] flip: 0, stem: 28186, fault:30926. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1631 -[UP] flip: 2241, stem: 26026, fault:31724. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1673 -[UP] flip: 1208, stem: 26165, fault:31534. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1663 -[UP] flip: 907, stem: 26185, fault:31496. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1661 -[UP] flip: 2320, stem: 26705, fault:31458. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1659 -[UP] flip: 3646, stem: 27185, fault:31135. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1642 -[UP] flip: 0, stem: 22125, fault:30717. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1620 -[UP] flip: 0, stem: 20365, fault:30717. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1620 -[UP] flip: 784, stem: 21025, fault:30660. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1617 -[UP] flip: 0, stem: 21625, fault:30660. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1617 -[UP] flip: 3548, stem: 21625, fault:30603. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1614 -[UP] flip: 4192, stem: 20945, fault:30546. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1611 -[UP] flip: 0, stem: 21485, fault:30356. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1601 -[UP] flip: 3257, stem: 21925, fault:30280. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1597 -[UP] flip: 727, stem: 23186, fault:30223. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1594 -[UP] flip: 1712, stem: 24266, fault:30166. flip_cnt: 4, stem_cnt: 1442, fault_cnt:1591 -[UP] flip: 2940, stem: 21067, fault:30242. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1595 -[UP] flip: 0, stem: 20310, fault:32028. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1689 -[UP] flip: 0, stem: 21790, fault:32028. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1689 -[UP] flip: 2787, stem: 22448, fault:32085. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1692 -[UP] flip: 2045, stem: 22206, fault:32199. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1698 -[UP] flip: 0, stem: 22546, fault:33092. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1745 -[UP] flip: 3787, stem: 22485, fault:33016. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1741 -[UP] flip: 4791, stem: 17725, fault:33092. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1745 -[UP] flip: 1548, stem: 18484, fault:33073. flip_cnt: 3, stem_cnt: 1444, fault_cnt:1744 -[UP] flip: 4219, stem: 19103, fault:33111. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1746 -[UP] flip: 3532, stem: 20223, fault:33054. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1743 -[UP] flip: 937, stem: 20124, fault:32902. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1735 -[UP] flip: 1129, stem: 19905, fault:32845. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1732 -[UP] flip: 5427, stem: 20065, fault:32769. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1728 -[UP] flip: 0, stem: 20585, fault:32655. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1722 -[UP] flip: 0, stem: 21026, fault:32655. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1722 -[UP] flip: 958, stem: 21807, fault:32598. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1719 -[UP] flip: 0, stem: 22787, fault:32598. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1719 -[UP] flip: 3331, stem: 14625, fault:29938. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1579 -[UP] flip: 860, stem: 14846, fault:29919. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1578 -[UP] flip: 2068, stem: 14204, fault:29843. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1574 -[UP] flip: 3120, stem: 14844, fault:29767. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1570 -[UP] flip: 0, stem: 15182, fault:29672. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1565 -[UP] flip: 3626, stem: 15422, fault:29615. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1562 -[UP] flip: 4891, stem: 13965, fault:27639. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1458 -[UP] flip: 0, stem: 14865, fault:27639. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1458 -[UP] flip: 0, stem: 15125, fault:27639. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1458 -[UP] flip: 2043, stem: 15404, fault:27601. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1456 -[UP] flip: 893, stem: 15403, fault:27620. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1457 -[UP] flip: 0, stem: 15983, fault:28038. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1479 -[UP] flip: 1939, stem: 16943, fault:28000. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1477 -[UP] flip: 0, stem: 17143, fault:27848. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1469 -[UP] flip: 747, stem: 18684, fault:27829. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1468 -[UP] flip: 0, stem: 19063, fault:27829. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1468 -[UP] flip: 1753, stem: 19242, fault:27886. flip_cnt: 4, stem_cnt: 1446, fault_cnt:1471 -[UP] flip: 0, stem: 17082, fault:29330. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1547 -[UP] flip: 1036, stem: 16200, fault:29311. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1546 -[UP] flip: 0, stem: 16601, fault:29311. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1546 -[UP] flip: 2047, stem: 17221, fault:29349. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1548 -[UP] flip: 757, stem: 15023, fault:29976. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1581 -[UP] flip: 3676, stem: 12760, fault:30470. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1607 -[UP] flip: 2097, stem: 12818, fault:30527. flip_cnt: 4, stem_cnt: 1450, fault_cnt:1610 -[UP] flip: 0, stem: 13538, fault:31990. flip_cnt: 0, stem_cnt: 1450, fault_cnt:1687 -[UP] flip: 0, stem: 14618, fault:31990. flip_cnt: 0, stem_cnt: 1450, fault_cnt:1687 -[UP] flip: 2399, stem: 14717, fault:32104. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1693 -[UP] flip: 3926, stem: 14297, fault:32047. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1690 -[UP] flip: 1388, stem: 14717, fault:31990. flip_cnt: 3, stem_cnt: 1451, fault_cnt:1687 -[UP] flip: 2219, stem: 14117, fault:31933. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1684 -[UP] flip: 2045, stem: 14457, fault:31477. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1660 -[UP] flip: 1963, stem: 14536, fault:30375. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1602 -[UP] flip: 1002, stem: 13754, fault:30926. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1631 -[UP] flip: 2376, stem: 12393, fault:31002. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1635 -[UP] flip: 4338, stem: 11513, fault:32199. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1698 -[UP] flip: 2036, stem: 9773, fault:31458. flip_cnt: 4, stem_cnt: 1455, fault_cnt:1659 -[UP] flip: 0, stem: 10333, fault:31534. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1663 -[UP] flip: 2171, stem: 9411, fault:31496. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1661 -[UP] flip: 3643, stem: 9811, fault:32066. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1691 -[UP] flip: 3628, stem: 9851, fault:31990. flip_cnt: 7, stem_cnt: 1457, fault_cnt:1687 -[UP] flip: 2861, stem: 10291, fault:31914. flip_cnt: 7, stem_cnt: 1457, fault_cnt:1683 -[UP] flip: 3248, stem: 11611, fault:31857. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1680 -[UP] flip: 1515, stem: 11971, fault:31743. flip_cnt: 3, stem_cnt: 1457, fault_cnt:1674 -[UP] flip: 0, stem: 12671, fault:31743. flip_cnt: 0, stem_cnt: 1457, fault_cnt:1674 -[UP] flip: 2996, stem: 12711, fault:31667. flip_cnt: 7, stem_cnt: 1457, fault_cnt:1670 -[UP] flip: 0, stem: 12731, fault:31059. flip_cnt: 0, stem_cnt: 1457, fault_cnt:1638 -[UP] flip: 2365, stem: 12411, fault:31002. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1635 -[UP] flip: 1885, stem: 12270, fault:31040. flip_cnt: 4, stem_cnt: 1458, fault_cnt:1637 -[UP] flip: 0, stem: 12711, fault:32712. flip_cnt: 0, stem_cnt: 1457, fault_cnt:1725 -[UP] flip: 2447, stem: 13831, fault:32731. flip_cnt: 2, stem_cnt: 1457, fault_cnt:1726 -[UP] flip: 4147, stem: 13771, fault:32693. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1724 -[UP] flip: 4646, stem: 13491, fault:32617. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1720 -[UP] flip: 4067, stem: 13351, fault:32579. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1718 -[UP] flip: 1512, stem: 13711, fault:32522. flip_cnt: 3, stem_cnt: 1457, fault_cnt:1715 -[UP] flip: 3415, stem: 13891, fault:32446. flip_cnt: 7, stem_cnt: 1457, fault_cnt:1711 -[UP] flip: 1456, stem: 14391, fault:30565. flip_cnt: 3, stem_cnt: 1457, fault_cnt:1612 -[UP] flip: 0, stem: 15371, fault:30565. flip_cnt: 0, stem_cnt: 1457, fault_cnt:1612 -[UP] flip: 1753, stem: 11792, fault:28931. flip_cnt: 3, stem_cnt: 1456, fault_cnt:1526 -[UP] flip: 1841, stem: 11833, fault:28532. flip_cnt: 4, stem_cnt: 1455, fault_cnt:1505 -[UP] flip: 3170, stem: 11172, fault:28646. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1511 -[UP] flip: 3653, stem: 11394, fault:28684. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1513 -[UP] flip: 1910, stem: 11034, fault:28627. flip_cnt: 3, stem_cnt: 1454, fault_cnt:1510 -[UP] flip: 2101, stem: 11214, fault:28665. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1512 -[UP] flip: 0, stem: 11234, fault:30869. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1628 -[UP] flip: 1068, stem: 11694, fault:30850. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1627 -[UP] flip: 515, stem: 12173, fault:30793. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1624 -[UP] flip: 2468, stem: 11793, fault:30736. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1621 -[UP] flip: 0, stem: 12933, fault:30698. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1619 -[UP] flip: 3977, stem: 12713, fault:30641. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1616 -[UP] flip: 1715, stem: 13633, fault:30584. flip_cnt: 3, stem_cnt: 1455, fault_cnt:1613 -[UP] flip: 2701, stem: 13993, fault:30546. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1611 -[UP] flip: 3315, stem: 13893, fault:30470. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1607 -[UP] flip: 1559, stem: 13333, fault:30356. flip_cnt: 3, stem_cnt: 1455, fault_cnt:1601 -[UP] flip: 1999, stem: 14494, fault:30318. flip_cnt: 4, stem_cnt: 1454, fault_cnt:1599 -[UP] flip: 3738, stem: 14974, fault:27145. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1432 -[UP] flip: 2097, stem: 15715, fault:27069. flip_cnt: 4, stem_cnt: 1453, fault_cnt:1428 -[UP] flip: 1749, stem: 14134, fault:27012. flip_cnt: 4, stem_cnt: 1454, fault_cnt:1425 -[UP] flip: 1615, stem: 15557, fault:27031. flip_cnt: 3, stem_cnt: 1451, fault_cnt:1426 -[UP] flip: 4313, stem: 15396, fault:26955. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1422 -[UP] flip: 0, stem: 13656, fault:26822. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1415 -[UP] flip: 0, stem: 14856, fault:26898. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1419 -[UP] flip: 0, stem: 14315, fault:26898. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1419 -[UP] flip: 1104, stem: 13956, fault:26879. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1418 -[UP] flip: 0, stem: 14256, fault:26879. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1418 -[UP] flip: 986, stem: 12575, fault:26841. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1416 -[UP] flip: 0, stem: 12875, fault:26841. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1416 -[UP] flip: 0, stem: 12735, fault:26841. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1416 -[UP] flip: 0, stem: 13416, fault:26841. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1416 -[UP] flip: 5013, stem: 13076, fault:26784. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1413 -[UP] flip: 0, stem: 12756, fault:26784. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1413 -[UP] flip: 3968, stem: 11896, fault:26727. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1410 -[UP] flip: 1110, stem: 12417, fault:26708. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1409 -[UP] flip: 0, stem: 12655, fault:26632. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1405 -[UP] flip: 0, stem: 12775, fault:26632. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1405 -[UP] flip: 0, stem: 12996, fault:26632. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1405 -[UP] flip: 3512, stem: 13256, fault:26651. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1406 -[UP] flip: 3720, stem: 13375, fault:31021. flip_cnt: 7, stem_cnt: 1453, fault_cnt:1636 -[UP] flip: 0, stem: 13655, fault:31021. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1636 -[UP] flip: 2288, stem: 13615, fault:30983. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1634 -[UP] flip: 3749, stem: 12033, fault:30964. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1633 -[UP] flip: 3786, stem: 12833, fault:32731. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1726 -[UP] flip: 0, stem: 13313, fault:32731. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1726 -[UP] flip: 1351, stem: 13814, fault:32712. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1725 -[UP] flip: 5289, stem: 14854, fault:32636. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1721 -[UP] flip: 877, stem: 14954, fault:32579. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1718 -[UP] flip: 5385, stem: 13476, fault:33092. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1745 -[UP] flip: 1702, stem: 13456, fault:33168. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1749 -[UP] flip: 5310, stem: 14096, fault:33415. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1762 -[UP] flip: 0, stem: 15096, fault:32864. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1733 -[UP] flip: 0, stem: 15656, fault:32864. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1733 -[UP] flip: 3349, stem: 15796, fault:32788. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1729 -[UP] flip: 2734, stem: 15734, fault:32503. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1714 -[UP] flip: 2909, stem: 16234, fault:32788. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1729 -[UP] flip: 5406, stem: 16614, fault:33149. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1748 -[UP] flip: 1158, stem: 12297, fault:34365. flip_cnt: 3, stem_cnt: 1451, fault_cnt:1812 -[UP] flip: 0, stem: 11374, fault:35524. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1873 -[UP] flip: 1335, stem: 12032, fault:35448. flip_cnt: 3, stem_cnt: 1456, fault_cnt:1869 -[UP] flip: 3754, stem: 13293, fault:35372. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1865 -[UP] flip: 1560, stem: 13793, fault:35277. flip_cnt: 3, stem_cnt: 1455, fault_cnt:1860 -[UP] flip: 4279, stem: 13532, fault:35315. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1862 -[UP] flip: 0, stem: 13052, fault:35372. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1865 -[UP] flip: 2772, stem: 13351, fault:35429. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1868 -[UP] flip: 0, stem: 12871, fault:35828. flip_cnt: 0, stem_cnt: 1457, fault_cnt:1889 -[UP] flip: 2352, stem: 12731, fault:35752. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1885 -[UP] flip: 3719, stem: 12771, fault:34517. flip_cnt: 7, stem_cnt: 1457, fault_cnt:1820 -[UP] flip: 1064, stem: 12631, fault:30185. flip_cnt: 2, stem_cnt: 1457, fault_cnt:1592 -[UP] flip: 1836, stem: 13371, fault:30128. flip_cnt: 3, stem_cnt: 1457, fault_cnt:1589 -[UP] flip: 979, stem: 13090, fault:30147. flip_cnt: 2, stem_cnt: 1458, fault_cnt:1590 -[UP] flip: 4861, stem: 13250, fault:30090. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1587 -[UP] flip: 2755, stem: 13410, fault:30052. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1585 -[UP] flip: 1429, stem: 14851, fault:30014. flip_cnt: 4, stem_cnt: 1457, fault_cnt:1583 -[UP] flip: 1972, stem: 15490, fault:29710. flip_cnt: 4, stem_cnt: 1458, fault_cnt:1567 -[UP] flip: 1590, stem: 15810, fault:32427. flip_cnt: 3, stem_cnt: 1458, fault_cnt:1710 -[UP] flip: 2865, stem: 15729, fault:33548. flip_cnt: 5, stem_cnt: 1459, fault_cnt:1769 -[UP] flip: 2098, stem: 16289, fault:33491. flip_cnt: 3, stem_cnt: 1459, fault_cnt:1766 -[UP] flip: 2545, stem: 16610, fault:33434. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1763 -[UP] flip: 2515, stem: 14910, fault:33339. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1758 -[UP] flip: 2227, stem: 14949, fault:33263. flip_cnt: 4, stem_cnt: 1459, fault_cnt:1754 -[UP] flip: 1559, stem: 14749, fault:33149. flip_cnt: 3, stem_cnt: 1459, fault_cnt:1748 -[UP] flip: 919, stem: 16089, fault:33168. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1749 -[UP] flip: 2662, stem: 15869, fault:33092. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1745 -[UP] flip: 4108, stem: 15749, fault:32693. flip_cnt: 5, stem_cnt: 1459, fault_cnt:1724 -[UP] flip: 0, stem: 15289, fault:32693. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1724 -[UP] flip: 3010, stem: 16549, fault:32636. flip_cnt: 5, stem_cnt: 1459, fault_cnt:1721 -[UP] flip: 4464, stem: 18189, fault:32541. flip_cnt: 5, stem_cnt: 1459, fault_cnt:1716 -[UP] flip: 3887, stem: 17789, fault:32465. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1712 -[UP] flip: 1267, stem: 16311, fault:32351. flip_cnt: 2, stem_cnt: 1457, fault_cnt:1706 -[UP] flip: 2148, stem: 15249, fault:32332. flip_cnt: 4, stem_cnt: 1459, fault_cnt:1705 -[UP] flip: 0, stem: 13590, fault:34346. flip_cnt: 0, stem_cnt: 1458, fault_cnt:1811 -[UP] flip: 4348, stem: 15030, fault:34270. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1807 -[UP] flip: 0, stem: 17630, fault:34156. flip_cnt: 0, stem_cnt: 1458, fault_cnt:1801 -[UP] flip: 3802, stem: 14288, fault:34593. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1824 -[UP] flip: 2887, stem: 13108, fault:34517. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1820 -[UP] flip: 2626, stem: 12948, fault:34213. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1804 -[UP] flip: 1107, stem: 13628, fault:34232. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1805 -[UP] flip: 1767, stem: 10327, fault:33510. flip_cnt: 3, stem_cnt: 1461, fault_cnt:1767 -[UP] flip: 1563, stem: 11207, fault:33453. flip_cnt: 3, stem_cnt: 1461, fault_cnt:1764 -[UP] flip: 2831, stem: 11907, fault:33377. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1760 -[UP] flip: 2240, stem: 11105, fault:32446. flip_cnt: 4, stem_cnt: 1463, fault_cnt:1711 -[UP] flip: 2816, stem: 10805, fault:34365. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1812 -[UP] flip: 2598, stem: 10785, fault:34346. flip_cnt: 2, stem_cnt: 1463, fault_cnt:1811 -[UP] flip: 4307, stem: 10165, fault:34289. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1808 -[UP] flip: 1098, stem: 10746, fault:34270. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1807 -[UP] flip: 0, stem: 11026, fault:34270. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1807 -[UP] flip: 637, stem: 10447, fault:34213. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1804 -[UP] flip: 4681, stem: 10287, fault:34137. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1800 -[UP] flip: 2377, stem: 10207, fault:34061. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1796 -[UP] flip: 4575, stem: 10067, fault:33358. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1759 -[UP] flip: 1938, stem: 10426, fault:33339. flip_cnt: 4, stem_cnt: 1462, fault_cnt:1758 -[UP] flip: 1357, stem: 10886, fault:33339. flip_cnt: 3, stem_cnt: 1462, fault_cnt:1758 -[UP] flip: 0, stem: 11066, fault:33339. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1758 -[UP] flip: 4615, stem: 11086, fault:33263. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1754 -[UP] flip: 1840, stem: 11647, fault:33225. flip_cnt: 4, stem_cnt: 1461, fault_cnt:1752 -[UP] flip: 2443, stem: 12067, fault:33111. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1746 -[UP] flip: 954, stem: 13387, fault:33016. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1741 -[UP] flip: 0, stem: 13447, fault:31591. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1666 -[UP] flip: 2112, stem: 14187, fault:31534. flip_cnt: 3, stem_cnt: 1461, fault_cnt:1663 -[UP] flip: 1815, stem: 13388, fault:31496. flip_cnt: 4, stem_cnt: 1460, fault_cnt:1661 -[UP] flip: 0, stem: 14148, fault:31059. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1638 -[UP] flip: 3876, stem: 14807, fault:31097. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1640 -[UP] flip: 4253, stem: 13667, fault:32484. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1713 -[UP] flip: 1730, stem: 13187, fault:32446. flip_cnt: 4, stem_cnt: 1461, fault_cnt:1711 -[UP] flip: 2155, stem: 13587, fault:33149. flip_cnt: 3, stem_cnt: 1461, fault_cnt:1748 -[UP] flip: 952, stem: 14407, fault:33130. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1747 -[UP] flip: 0, stem: 14627, fault:33130. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1747 -[UP] flip: 2956, stem: 14587, fault:33073. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1744 -[UP] flip: 5523, stem: 14447, fault:33757. flip_cnt: 7, stem_cnt: 1461, fault_cnt:1780 -[UP] flip: 2307, stem: 15108, fault:32826. flip_cnt: 4, stem_cnt: 1460, fault_cnt:1731 -[UP] flip: 3731, stem: 14848, fault:32731. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1726 -[UP] flip: 559, stem: 14149, fault:30831. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1626 -[UP] flip: 2483, stem: 14769, fault:30793. flip_cnt: 5, stem_cnt: 1459, fault_cnt:1624 -[UP] flip: 2847, stem: 12085, fault:31667. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1670 -[UP] flip: 1709, stem: 13085, fault:35144. flip_cnt: 3, stem_cnt: 1463, fault_cnt:1853 -[UP] flip: 2197, stem: 13646, fault:35106. flip_cnt: 4, stem_cnt: 1462, fault_cnt:1851 -[UP] flip: 1379, stem: 13826, fault:34992. flip_cnt: 3, stem_cnt: 1462, fault_cnt:1845 -[UP] flip: 0, stem: 14047, fault:34992. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1845 -[UP] flip: 2744, stem: 14187, fault:34954. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1843 -[UP] flip: 2998, stem: 12887, fault:34859. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1838 -[UP] flip: 4295, stem: 14147, fault:34308. flip_cnt: 7, stem_cnt: 1461, fault_cnt:1809 -[UP] flip: 0, stem: 13027, fault:33092. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1745 -[UP] flip: 703, stem: 13387, fault:33035. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1742 -[UP] flip: 2684, stem: 13167, fault:33054. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1743 -[UP] flip: 0, stem: 11544, fault:33605. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1772 -[UP] flip: 1136, stem: 11664, fault:33586. flip_cnt: 2, stem_cnt: 1464, fault_cnt:1771 -[UP] flip: 2700, stem: 12144, fault:33548. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1769 -[UP] flip: 2692, stem: 11802, fault:33529. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1768 -[UP] flip: 915, stem: 11503, fault:33472. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1765 -[UP] flip: 0, stem: 13943, fault:33472. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1765 -[UP] flip: 0, stem: 9888, fault:34023. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1794 -[UP] flip: 3017, stem: 10226, fault:34080. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1797 -[UP] flip: 1095, stem: 10286, fault:34517. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1820 -[UP] flip: 662, stem: 11027, fault:34460. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1817 -[UP] flip: 2661, stem: 12047, fault:34384. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1813 -[UP] flip: 4859, stem: 12987, fault:33909. flip_cnt: 7, stem_cnt: 1461, fault_cnt:1788 -[UP] flip: 0, stem: 13288, fault:33909. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1788 -[UP] flip: 0, stem: 13427, fault:33909. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1788 -[UP] flip: 3567, stem: 13166, fault:34631. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1826 -[UP] flip: 2949, stem: 13025, fault:35220. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1857 -[UP] flip: 2261, stem: 13505, fault:35258. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1859 -[UP] flip: 0, stem: 14185, fault:35885. flip_cnt: 0, stem_cnt: 1463, fault_cnt:1892 -[UP] flip: 1304, stem: 13784, fault:36322. flip_cnt: 3, stem_cnt: 1464, fault_cnt:1915 -[UP] flip: 4435, stem: 13403, fault:36284. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1913 -[UP] flip: 0, stem: 14763, fault:36284. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1913 -[UP] flip: 1404, stem: 13521, fault:36265. flip_cnt: 3, stem_cnt: 1467, fault_cnt:1912 -[UP] flip: 1229, stem: 13162, fault:36208. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1909 -[UP] flip: 2948, stem: 12642, fault:36189. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1908 -[UP] flip: 4912, stem: 13022, fault:36113. flip_cnt: 7, stem_cnt: 1466, fault_cnt:1904 -[UP] flip: 890, stem: 12842, fault:35410. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1867 -[UP] flip: 1028, stem: 13102, fault:35619. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1878 -[UP] flip: 0, stem: 13542, fault:35619. flip_cnt: 0, stem_cnt: 1466, fault_cnt:1878 -[UP] flip: 1868, stem: 13863, fault:35581. flip_cnt: 4, stem_cnt: 1465, fault_cnt:1876 -[UP] flip: 0, stem: 14723, fault:35524. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1873 -[UP] flip: 2882, stem: 14983, fault:35448. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1869 -[UP] flip: 2884, stem: 15065, fault:34441. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1816 -[UP] flip: 552, stem: 14606, fault:33947. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1790 -[UP] flip: 790, stem: 13404, fault:35676. flip_cnt: 2, stem_cnt: 1464, fault_cnt:1881 -[UP] flip: 0, stem: 14364, fault:36436. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1921 -[UP] flip: 1321, stem: 13682, fault:36379. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1918 -[UP] flip: 3011, stem: 13942, fault:36341. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1916 -[UP] flip: 702, stem: 14063, fault:36208. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1909 -[UP] flip: 3298, stem: 13442, fault:36208. flip_cnt: 7, stem_cnt: 1466, fault_cnt:1909 -[UP] flip: 0, stem: 13023, fault:38051. flip_cnt: 0, stem_cnt: 1465, fault_cnt:2006 -[UP] flip: 955, stem: 12903, fault:38032. flip_cnt: 2, stem_cnt: 1465, fault_cnt:2005 -[UP] flip: 5407, stem: 11883, fault:37918. flip_cnt: 7, stem_cnt: 1465, fault_cnt:1999 -[UP] flip: 0, stem: 11383, fault:37880. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1997 -[UP] flip: 1168, stem: 9784, fault:37709. flip_cnt: 2, stem_cnt: 1464, fault_cnt:1988 -[UP] flip: 4740, stem: 8784, fault:37671. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1986 -[UP] flip: 2327, stem: 9224, fault:37272. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1965 -[UP] flip: 0, stem: 8704, fault:37272. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1965 -[UP] flip: 1037, stem: 9663, fault:37329. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1968 -[UP] flip: 1952, stem: 8400, fault:37424. flip_cnt: 4, stem_cnt: 1468, fault_cnt:1973 -[UP] flip: 3048, stem: 7320, fault:37443. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1974 -[UP] flip: 2901, stem: 6638, fault:37462. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1975 -[UP] flip: 3366, stem: 6838, fault:37899. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1998 -[UP] flip: 2594, stem: 6578, fault:37804. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1993 -[UP] flip: 2498, stem: 6717, fault:38127. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2010 -[UP] flip: 5594, stem: 6937, fault:38127. flip_cnt: 7, stem_cnt: 1471, fault_cnt:2010 -[UP] flip: 2611, stem: 6997, fault:37861. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1996 -[UP] flip: 1509, stem: 7317, fault:37044. flip_cnt: 3, stem_cnt: 1471, fault_cnt:1953 -[UP] flip: 1378, stem: 6958, fault:36987. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1950 -[UP] flip: 3581, stem: 6798, fault:36911. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1946 -[UP] flip: 1615, stem: 7518, fault:36816. flip_cnt: 3, stem_cnt: 1470, fault_cnt:1941 -[UP] flip: 0, stem: 7599, fault:36816. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1941 -[UP] flip: 0, stem: 8079, fault:36816. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1941 -[UP] flip: 4512, stem: 9219, fault:36778. flip_cnt: 5, stem_cnt: 1469, fault_cnt:1939 -[UP] flip: 889, stem: 10080, fault:36721. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1936 -[UP] flip: 3217, stem: 9838, fault:36797. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1940 -[UP] flip: 1936, stem: 10259, fault:37310. flip_cnt: 4, stem_cnt: 1469, fault_cnt:1967 -[UP] flip: 1699, stem: 10059, fault:37196. flip_cnt: 3, stem_cnt: 1469, fault_cnt:1961 -[UP] flip: 680, stem: 9680, fault:37139. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1958 -[UP] flip: 1490, stem: 9740, fault:37120. flip_cnt: 3, stem_cnt: 1468, fault_cnt:1957 -[UP] flip: 1671, stem: 10500, fault:37063. flip_cnt: 3, stem_cnt: 1468, fault_cnt:1954 -[UP] flip: 0, stem: 10280, fault:37063. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1954 -[UP] flip: 2464, stem: 7460, fault:37101. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1956 -[UP] flip: 1149, stem: 6000, fault:37614. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1983 -[UP] flip: 3528, stem: 6900, fault:37538. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1979 -[UP] flip: 4101, stem: 6700, fault:37443. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1974 -[UP] flip: 1298, stem: 6441, fault:37367. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1970 -[UP] flip: 4808, stem: 6600, fault:37766. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1991 -[UP] flip: 4837, stem: 7159, fault:37937. flip_cnt: 5, stem_cnt: 1469, fault_cnt:2000 -[UP] flip: 2899, stem: 7119, fault:37899. flip_cnt: 5, stem_cnt: 1469, fault_cnt:1998 -[UP] flip: 3571, stem: 7239, fault:37633. flip_cnt: 7, stem_cnt: 1469, fault_cnt:1984 -[UP] flip: 2710, stem: 6197, fault:37614. flip_cnt: 4, stem_cnt: 1471, fault_cnt:1983 -[UP] flip: 2077, stem: 6440, fault:37994. flip_cnt: 3, stem_cnt: 1468, fault_cnt:2003 -[UP] flip: 2924, stem: 6160, fault:37918. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1999 -[UP] flip: 0, stem: 6740, fault:37994. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2003 -[UP] flip: 2720, stem: 7261, fault:37956. flip_cnt: 4, stem_cnt: 1467, fault_cnt:2001 -[UP] flip: 0, stem: 6861, fault:37937. flip_cnt: 0, stem_cnt: 1467, fault_cnt:2000 -[UP] flip: 2050, stem: 6861, fault:37880. flip_cnt: 3, stem_cnt: 1467, fault_cnt:1997 -[UP] flip: 0, stem: 7663, fault:37823. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1994 -[UP] flip: 1012, stem: 7763, fault:37842. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1995 -[UP] flip: 0, stem: 8004, fault:37823. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1994 -[UP] flip: 382, stem: 7745, fault:37766. flip_cnt: 1, stem_cnt: 1463, fault_cnt:1991 -[UP] flip: 0, stem: 7766, fault:37766. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1991 -[UP] flip: 3032, stem: 8666, fault:37728. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1989 -[UP] flip: 2710, stem: 8426, fault:37082. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1955 -[UP] flip: 2962, stem: 8806, fault:36018. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1899 -[UP] flip: 670, stem: 9727, fault:35904. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1893 -[UP] flip: 2381, stem: 9407, fault:35847. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1890 -[UP] flip: 0, stem: 9909, fault:33890. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1787 -[UP] flip: 1114, stem: 9989, fault:33909. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1788 -[UP] flip: 3589, stem: 10508, fault:35277. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1860 -[UP] flip: 2868, stem: 10987, fault:35695. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1882 -[UP] flip: 1670, stem: 10025, fault:35676. flip_cnt: 3, stem_cnt: 1463, fault_cnt:1881 -[UP] flip: 5006, stem: 9764, fault:35334. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1863 -[UP] flip: 979, stem: 9463, fault:35885. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1892 -[UP] flip: 3406, stem: 9823, fault:36436. flip_cnt: 7, stem_cnt: 1465, fault_cnt:1921 -[UP] flip: 0, stem: 9023, fault:36493. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1924 -[UP] flip: 3679, stem: 9103, fault:36417. flip_cnt: 7, stem_cnt: 1465, fault_cnt:1920 -[UP] flip: 3203, stem: 9063, fault:36379. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1918 -[UP] flip: 4906, stem: 9164, fault:36189. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1908 -[UP] flip: 1197, stem: 9363, fault:36132. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1905 -[UP] flip: 2901, stem: 9723, fault:36170. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1907 -[UP] flip: 0, stem: 10003, fault:36170. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1907 -[UP] flip: 1654, stem: 10043, fault:36151. flip_cnt: 3, stem_cnt: 1465, fault_cnt:1906 -[UP] flip: 2854, stem: 9303, fault:37671. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1986 -[UP] flip: 3046, stem: 8843, fault:37196. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1961 -[UP] flip: 908, stem: 8923, fault:37177. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1960 -[UP] flip: 0, stem: 8922, fault:37158. flip_cnt: 0, stem_cnt: 1466, fault_cnt:1959 -[UP] flip: 2901, stem: 10802, fault:37139. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1958 -[UP] flip: 4595, stem: 10242, fault:37101. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1956 -[UP] flip: 3183, stem: 9860, fault:37158. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1959 -[UP] flip: 2257, stem: 10120, fault:37234. flip_cnt: 4, stem_cnt: 1468, fault_cnt:1963 -[UP] flip: 1905, stem: 10301, fault:38431. flip_cnt: 4, stem_cnt: 1467, fault_cnt:2026 -[UP] flip: 725, stem: 10502, fault:38374. flip_cnt: 2, stem_cnt: 1466, fault_cnt:2023 -[UP] flip: 1436, stem: 9782, fault:38317. flip_cnt: 2, stem_cnt: 1466, fault_cnt:2020 -[UP] flip: 0, stem: 10801, fault:38811. flip_cnt: 0, stem_cnt: 1467, fault_cnt:2046 -[UP] flip: 3149, stem: 8540, fault:39571. flip_cnt: 5, stem_cnt: 1468, fault_cnt:2086 -[UP] flip: 2913, stem: 8140, fault:39381. flip_cnt: 5, stem_cnt: 1468, fault_cnt:2076 -[UP] flip: 0, stem: 6478, fault:39381. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2076 -[UP] flip: 2964, stem: 5898, fault:39324. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2073 -[UP] flip: 1798, stem: 6218, fault:38868. flip_cnt: 3, stem_cnt: 1470, fault_cnt:2049 -[UP] flip: 2569, stem: 5173, fault:39381. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2076 -[UP] flip: 0, stem: 5032, fault:39590. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2087 -[UP] flip: 2949, stem: 4232, fault:39533. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2084 -[UP] flip: 2954, stem: 4150, fault:39590. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2087 -[UP] flip: 2977, stem: 3368, fault:39685. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2092 -[UP] flip: 1336, stem: 2969, fault:40027. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2110 -[UP] flip: 688, stem: 3430, fault:39970. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2107 -[UP] flip: 2036, stem: 3090, fault:39913. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2104 -[UP] flip: 0, stem: 2990, fault:39913. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2104 -[UP] flip: 1652, stem: 3150, fault:39856. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2101 -[UP] flip: 4555, stem: 2150, fault:39799. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2098 -[UP] flip: 2189, stem: 3610, fault:39742. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2095 -[UP] flip: 4963, stem: 3910, fault:39666. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2091 -[UP] flip: 2085, stem: 4050, fault:39609. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2088 -[UP] flip: 3013, stem: 3950, fault:39552. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2085 -[UP] flip: 2354, stem: 3850, fault:39476. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2081 -[UP] flip: 1050, stem: 3629, fault:39533. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2084 -[UP] flip: 3748, stem: 3089, fault:39932. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2105 -[UP] flip: 4504, stem: 2809, fault:39837. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2100 -[UP] flip: 1666, stem: 3149, fault:39856. flip_cnt: 3, stem_cnt: 1479, fault_cnt:2101 -[UP] flip: 3006, stem: 3009, fault:39856. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2101 -[UP] flip: 2037, stem: 3810, fault:39628. flip_cnt: 4, stem_cnt: 1478, fault_cnt:2089 -[UP] flip: 1393, stem: 5011, fault:39514. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2083 -[UP] flip: 4157, stem: 5671, fault:39438. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2079 -[UP] flip: 3031, stem: 4449, fault:39134. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2063 -[UP] flip: 2611, stem: 2608, fault:39153. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2064 -[UP] flip: 4665, stem: 2468, fault:39229. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2068 -[UP] flip: 1186, stem: 3149, fault:39172. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2065 -[UP] flip: 2767, stem: 3529, fault:39134. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2063 -[UP] flip: 1153, stem: 4249, fault:39115. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2062 -[UP] flip: 2621, stem: 3567, fault:39191. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2066 -[UP] flip: 4839, stem: 3987, fault:39780. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2097 -[UP] flip: 5148, stem: 3947, fault:39704. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2093 -[UP] flip: 3175, stem: 3727, fault:39647. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2090 -[UP] flip: 5251, stem: 5407, fault:39552. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2085 -[UP] flip: 2108, stem: 5007, fault:40312. flip_cnt: 3, stem_cnt: 1481, fault_cnt:2125 -[UP] flip: 5258, stem: 5527, fault:40255. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2122 -[UP] flip: 1207, stem: 5028, fault:39343. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2074 -[UP] flip: 2795, stem: 4768, fault:39286. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2071 -[UP] flip: 1435, stem: 5749, fault:39267. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2070 -[UP] flip: 1006, stem: 6329, fault:39248. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2069 -[UP] flip: 1072, stem: 6189, fault:39191. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2066 -[UP] flip: 2142, stem: 6429, fault:39134. flip_cnt: 3, stem_cnt: 1479, fault_cnt:2063 -[UP] flip: 4871, stem: 6969, fault:39058. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2059 -[UP] flip: 4225, stem: 6770, fault:38982. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2055 -[UP] flip: 4975, stem: 6930, fault:38697. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2040 -[UP] flip: 1005, stem: 7111, fault:38640. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2037 -[UP] flip: 5407, stem: 5090, fault:38564. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2033 -[UP] flip: 1762, stem: 5850, fault:38507. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2030 -[UP] flip: 0, stem: 4871, fault:39457. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2080 -[UP] flip: 1620, stem: 5331, fault:39476. flip_cnt: 3, stem_cnt: 1477, fault_cnt:2081 -[UP] flip: 0, stem: 4409, fault:39514. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2083 -[UP] flip: 2827, stem: 4469, fault:39799. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2098 -[UP] flip: 2911, stem: 4629, fault:39704. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2093 -[UP] flip: 5148, stem: 3389, fault:39628. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2089 -[UP] flip: 3056, stem: 3829, fault:39647. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2090 -[UP] flip: 2540, stem: 3949, fault:39571. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2086 -[UP] flip: 0, stem: 4249, fault:39685. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2092 -[UP] flip: 6062, stem: 3829, fault:39609. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2088 -[UP] flip: 0, stem: 3689, fault:39609. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2088 -[UP] flip: 1937, stem: 4269, fault:39552. flip_cnt: 4, stem_cnt: 1479, fault_cnt:2085 -[UP] flip: 0, stem: 3529, fault:39552. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2085 -[UP] flip: 0, stem: 3290, fault:39552. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2085 -[UP] flip: 0, stem: 3630, fault:39552. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2085 -[UP] flip: 0, stem: 4230, fault:39552. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2085 -[UP] flip: 2917, stem: 4008, fault:39609. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2088 -[UP] flip: 395, stem: 4028, fault:39856. flip_cnt: 1, stem_cnt: 1480, fault_cnt:2101 -[UP] flip: 1547, stem: 4206, fault:40236. flip_cnt: 3, stem_cnt: 1482, fault_cnt:2121 -[UP] flip: 1383, stem: 3746, fault:40198. flip_cnt: 3, stem_cnt: 1482, fault_cnt:2119 -[UP] flip: 4216, stem: 4386, fault:40331. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2126 -[UP] flip: 5187, stem: 3186, fault:40293. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2124 -[UP] flip: 5040, stem: 3066, fault:40236. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2121 -[UP] flip: 3864, stem: 2285, fault:40274. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2123 -[UP] flip: 2558, stem: 2225, fault:40806. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2151 -[UP] flip: 993, stem: 2306, fault:40787. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2150 -[UP] flip: 2930, stem: 2446, fault:40730. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2147 -[UP] flip: 0, stem: 3086, fault:40521. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2136 -[UP] flip: 0, stem: 3067, fault:40521. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2136 -[UP] flip: 0, stem: 3167, fault:40521. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2136 -[UP] flip: 397, stem: 2566, fault:40578. flip_cnt: 1, stem_cnt: 1482, fault_cnt:2139 -[UP] flip: 1680, stem: 2606, fault:40616. flip_cnt: 3, stem_cnt: 1482, fault_cnt:2141 -[UP] flip: 2935, stem: 2564, fault:40711. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2146 -[UP] flip: 2940, stem: 2564, fault:40654. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2143 -[UP] flip: 1562, stem: 2243, fault:40635. flip_cnt: 3, stem_cnt: 1485, fault_cnt:2142 -[UP] flip: 2019, stem: 2644, fault:40597. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2140 -[UP] flip: 2999, stem: 2524, fault:40597. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2140 -[UP] flip: 1835, stem: 2226, fault:40103. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2114 -[UP] flip: 0, stem: 525, fault:40122. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2115 -[UP] flip: 2674, stem: 544, fault:40179. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2118 -[UP] flip: 3105, stem: 504, fault:41034. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2163 -[UP] flip: 0, stem: 324, fault:40996. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2161 -[UP] flip: 2517, stem: 463, fault:41053. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2164 -[UP] flip: 3115, stem: 161, fault:41262. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2175 -[UP] flip: 5224, stem: 1943, fault:41262. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2175 -[UP] flip: 5229, stem: 201, fault:41110. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2167 -[UP] flip: 2592, stem: 1183, fault:41262. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2175 -[UP] flip: 1207, stem: 2344, fault:41091. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2166 -[UP] flip: 0, stem: 1824, fault:41091. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2166 -[UP] flip: 1209, stem: 281, fault:41148. flip_cnt: 2, stem_cnt: 1487, fault_cnt:2169 -[UP] flip: 4922, stem: 2403, fault:41224. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2173 -[UP] flip: 4927, stem: 321, fault:41262. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2175 -[UP] flip: 2537, stem: 1624, fault:41243. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2174 -[UP] flip: 2472, stem: 2084, fault:41015. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2162 -[UP] flip: 2476, stem: 2084, fault:40882. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2155 -[UP] flip: 962, stem: 2585, fault:40844. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2153 -[UP] flip: 959, stem: 2665, fault:40787. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2150 -[UP] flip: 2571, stem: 1765, fault:40673. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2144 -[UP] flip: 1644, stem: 2267, fault:40559. flip_cnt: 3, stem_cnt: 1481, fault_cnt:2138 -[UP] flip: 0, stem: 3068, fault:40559. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2138 -[UP] flip: 2581, stem: 2486, fault:40597. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2140 -[UP] flip: 0, stem: 3066, fault:40825. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2152 -[UP] flip: 0, stem: 3587, fault:40825. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2152 -[UP] flip: 1780, stem: 3727, fault:40806. flip_cnt: 3, stem_cnt: 1481, fault_cnt:2151 -[UP] flip: 3723, stem: 3227, fault:40046. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2111 -[UP] flip: 0, stem: 3507, fault:40046. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2111 -[UP] flip: 2115, stem: 2827, fault:40008. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2109 -[UP] flip: 4049, stem: 2527, fault:39932. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2105 -[UP] flip: 3144, stem: 2547, fault:39913. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2104 -[UP] flip: 988, stem: 4088, fault:39856. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2101 -[UP] flip: 0, stem: 3168, fault:39856. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2101 -[UP] flip: 1999, stem: 3308, fault:39837. flip_cnt: 3, stem_cnt: 1480, fault_cnt:2100 -[UP] flip: 2133, stem: 2926, fault:39609. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2088 -[UP] flip: 5496, stem: 2806, fault:40464. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2133 -[UP] flip: 2357, stem: 2083, fault:40806. flip_cnt: 4, stem_cnt: 1485, fault_cnt:2151 -[UP] flip: 994, stem: 782, fault:41167. flip_cnt: 2, stem_cnt: 1486, fault_cnt:2170 -[UP] flip: 2571, stem: 1022, fault:40844. flip_cnt: 5, stem_cnt: 1486, fault_cnt:2153 -[UP] flip: 0, stem: 782, fault:40844. flip_cnt: 0, stem_cnt: 1486, fault_cnt:2153 -[UP] flip: 996, stem: 302, fault:40882. flip_cnt: 2, stem_cnt: 1486, fault_cnt:2155 -[UP] flip: 5057, stem: 942, fault:41091. flip_cnt: 5, stem_cnt: 1486, fault_cnt:2166 -[UP] flip: 3127, stem: 322, fault:41034. flip_cnt: 5, stem_cnt: 1486, fault_cnt:2163 -[UP] flip: 1203, stem: 522, fault:41053. flip_cnt: 2, stem_cnt: 1486, fault_cnt:2164 -[UP] flip: 3206, stem: 1202, fault:41072. flip_cnt: 2, stem_cnt: 1486, fault_cnt:2165 -[UP] flip: 3133, stem: 0, fault:41129. flip_cnt: 5, stem_cnt: 1488, fault_cnt:2168 -FIND SOLUTION! -[SOL] flip: 0, stem: 0, fault:41319. flip_cnt: 0, stem_cnt: 1488, fault_cnt:2178 -coverage: 0.4449 pattern: 1 before: 4896 now: 2718 -checking valid circuit ... result: 1. -local search! -[UP] flip: 5, stem: 289, fault:299. flip_cnt: 5, stem_cnt: 1199, fault_cnt:501 -[UP] flip: 0, stem: 5273, fault:442. flip_cnt: 0, stem_cnt: 1235, fault_cnt:585 -[UP] flip: 0, stem: 4746, fault:1485. flip_cnt: 0, stem_cnt: 1262, fault_cnt:1091 -[UP] flip: 0, stem: 4498, fault:1591. flip_cnt: 0, stem_cnt: 1310, fault_cnt:883 -[UP] flip: 0, stem: 4658, fault:2139. flip_cnt: 0, stem_cnt: 1330, fault_cnt:963 -[UP] flip: 0, stem: 4625, fault:2266. flip_cnt: 0, stem_cnt: 1323, fault_cnt:876 -[UP] flip: 6, stem: 5714, fault:4108. flip_cnt: 3, stem_cnt: 1334, fault_cnt:1264 -[UP] flip: 5, stem: 4922, fault:4982. flip_cnt: 2, stem_cnt: 1346, fault_cnt:1341 -[UP] flip: 6, stem: 5086, fault:5872. flip_cnt: 2, stem_cnt: 1342, fault_cnt:1376 -[UP] flip: 39, stem: 5585, fault:6132. flip_cnt: 5, stem_cnt: 1343, fault_cnt:1292 -[UP] flip: 0, stem: 5672, fault:7910. flip_cnt: 0, stem_cnt: 1356, fault_cnt:1547 -[UP] flip: 5, stem: 6329, fault:8829. flip_cnt: 2, stem_cnt: 1359, fault_cnt:1614 -[UP] flip: 15, stem: 6924, fault:8892. flip_cnt: 3, stem_cnt: 1364, fault_cnt:1559 -[UP] flip: 18, stem: 6513, fault:9999. flip_cnt: 3, stem_cnt: 1355, fault_cnt:1583 -[UP] flip: 52, stem: 8210, fault:10861. flip_cnt: 5, stem_cnt: 1358, fault_cnt:1657 -[UP] flip: 27, stem: 6610, fault:9802. flip_cnt: 3, stem_cnt: 1358, fault_cnt:1455 -[UP] flip: 0, stem: 7257, fault:12336. flip_cnt: 0, stem_cnt: 1371, fault_cnt:1661 -[UP] flip: 19, stem: 7922, fault:12355. flip_cnt: 3, stem_cnt: 1366, fault_cnt:1606 -[UP] flip: 70, stem: 8177, fault:14179. flip_cnt: 7, stem_cnt: 1371, fault_cnt:1733 -[UP] flip: 47, stem: 8693, fault:12188. flip_cnt: 5, stem_cnt: 1375, fault_cnt:1474 -[UP] flip: 55, stem: 9437, fault:14347. flip_cnt: 5, stem_cnt: 1371, fault_cnt:1676 -[UP] flip: 68, stem: 7097, fault:14650. flip_cnt: 5, stem_cnt: 1371, fault_cnt:1661 -[UP] flip: 0, stem: 6986, fault:14622. flip_cnt: 0, stem_cnt: 1382, fault_cnt:1636 -[UP] flip: 34, stem: 7287, fault:14778. flip_cnt: 3, stem_cnt: 1381, fault_cnt:1636 -[UP] flip: 0, stem: 7882, fault:15768. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1698 -[UP] flip: 39, stem: 8424, fault:15942. flip_cnt: 3, stem_cnt: 1384, fault_cnt:1671 -[UP] flip: 83, stem: 10244, fault:15942. flip_cnt: 6, stem_cnt: 1384, fault_cnt:1672 -[UP] flip: 75, stem: 9822, fault:16703. flip_cnt: 4, stem_cnt: 1386, fault_cnt:1743 -[UP] flip: 31, stem: 9728, fault:16115. flip_cnt: 2, stem_cnt: 1380, fault_cnt:1663 -[UP] flip: 112, stem: 9504, fault:15183. flip_cnt: 7, stem_cnt: 1384, fault_cnt:1592 -[UP] flip: 38, stem: 9081, fault:14867. flip_cnt: 3, stem_cnt: 1387, fault_cnt:1458 -[UP] flip: 84, stem: 8962, fault:16778. flip_cnt: 7, stem_cnt: 1386, fault_cnt:1674 -[UP] flip: 28, stem: 9004, fault:16614. flip_cnt: 2, stem_cnt: 1384, fault_cnt:1644 -[UP] flip: 141, stem: 8502, fault:16376. flip_cnt: 7, stem_cnt: 1386, fault_cnt:1593 -[UP] flip: 76, stem: 8575, fault:16335. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1586 -[UP] flip: 97, stem: 8242, fault:16920. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1631 -[UP] flip: 104, stem: 8868, fault:17392. flip_cnt: 5, stem_cnt: 1380, fault_cnt:1668 -[UP] flip: 35, stem: 10224, fault:17680. flip_cnt: 2, stem_cnt: 1384, fault_cnt:1697 -[UP] flip: 0, stem: 12486, fault:16956. flip_cnt: 0, stem_cnt: 1382, fault_cnt:1638 -[UP] flip: 23, stem: 11532, fault:16773. flip_cnt: 2, stem_cnt: 1376, fault_cnt:1645 -[UP] flip: 0, stem: 10996, fault:17337. flip_cnt: 0, stem_cnt: 1372, fault_cnt:1677 -[UP] flip: 105, stem: 11832, fault:17878. flip_cnt: 4, stem_cnt: 1376, fault_cnt:1726 -[UP] flip: 0, stem: 10927, fault:17023. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1674 -[UP] flip: 28, stem: 9806, fault:17013. flip_cnt: 2, stem_cnt: 1382, fault_cnt:1629 -[UP] flip: 111, stem: 9886, fault:16253. flip_cnt: 5, stem_cnt: 1382, fault_cnt:1554 -[UP] flip: 226, stem: 11626, fault:16368. flip_cnt: 7, stem_cnt: 1382, fault_cnt:1560 -[UP] flip: 168, stem: 8799, fault:15571. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1499 -[UP] flip: 76, stem: 8947, fault:14958. flip_cnt: 2, stem_cnt: 1381, fault_cnt:1446 -[UP] flip: 234, stem: 10747, fault:14828. flip_cnt: 7, stem_cnt: 1381, fault_cnt:1434 -[UP] flip: 72, stem: 9434, fault:14208. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1377 -[UP] flip: 0, stem: 8940, fault:13995. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1321 -[UP] flip: 65, stem: 9800, fault:15211. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1434 -[UP] flip: 70, stem: 11380, fault:15173. flip_cnt: 3, stem_cnt: 1388, fault_cnt:1431 -[UP] flip: 167, stem: 10257, fault:16490. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1555 -[UP] flip: 25, stem: 11677, fault:16566. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1568 -[UP] flip: 61, stem: 11319, fault:13108. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1282 -[UP] flip: 22, stem: 9788, fault:13124. flip_cnt: 1, stem_cnt: 1380, fault_cnt:1332 -[UP] flip: 40, stem: 9344, fault:13394. flip_cnt: 2, stem_cnt: 1384, fault_cnt:1329 -[UP] flip: 196, stem: 11085, fault:13394. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1326 -[UP] flip: 212, stem: 12684, fault:13090. flip_cnt: 7, stem_cnt: 1384, fault_cnt:1302 -[UP] flip: 154, stem: 10260, fault:14869. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1438 -[UP] flip: 199, stem: 11378, fault:14751. flip_cnt: 6, stem_cnt: 1390, fault_cnt:1423 -[UP] flip: 73, stem: 11560, fault:15623. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1505 -[UP] flip: 236, stem: 10003, fault:15934. flip_cnt: 7, stem_cnt: 1385, fault_cnt:1521 -[UP] flip: 48, stem: 11824, fault:15896. flip_cnt: 2, stem_cnt: 1384, fault_cnt:1516 -[UP] flip: 221, stem: 11342, fault:16498. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1568 -[UP] flip: 0, stem: 12740, fault:16498. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1572 -[UP] flip: 188, stem: 11214, fault:17778. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1686 -[UP] flip: 231, stem: 12574, fault:17683. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1677 -[UP] flip: 49, stem: 12032, fault:17926. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1699 -[UP] flip: 111, stem: 10834, fault:16387. flip_cnt: 3, stem_cnt: 1394, fault_cnt:1592 -[UP] flip: 0, stem: 11888, fault:16467. flip_cnt: 0, stem_cnt: 1380, fault_cnt:1592 -[UP] flip: 289, stem: 10642, fault:16226. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1541 -[UP] flip: 215, stem: 12242, fault:16169. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1545 -[UP] flip: 224, stem: 13291, fault:15945. flip_cnt: 5, stem_cnt: 1377, fault_cnt:1511 -[UP] flip: 209, stem: 11249, fault:13450. flip_cnt: 7, stem_cnt: 1379, fault_cnt:1263 -[UP] flip: 348, stem: 12190, fault:13729. flip_cnt: 7, stem_cnt: 1378, fault_cnt:1284 -[UP] flip: 138, stem: 10243, fault:14630. flip_cnt: 2, stem_cnt: 1385, fault_cnt:1358 -[UP] flip: 78, stem: 9779, fault:12839. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1203 -[UP] flip: 187, stem: 11379, fault:12858. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1207 -[UP] flip: 153, stem: 10254, fault:12954. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1223 -[UP] flip: 0, stem: 9492, fault:12957. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1229 -[UP] flip: 327, stem: 10190, fault:12901. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1226 -[UP] flip: 75, stem: 11450, fault:12882. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1225 -[UP] flip: 54, stem: 10549, fault:14269. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1377 -[UP] flip: 0, stem: 10906, fault:14516. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1393 -[UP] flip: 329, stem: 12546, fault:14478. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1389 -[UP] flip: 316, stem: 9248, fault:14056. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1355 -[UP] flip: 0, stem: 9766, fault:14645. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1410 -[UP] flip: 209, stem: 11445, fault:14702. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1411 -[UP] flip: 263, stem: 12823, fault:14626. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1405 -[UP] flip: 195, stem: 13981, fault:14664. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1410 -[UP] flip: 225, stem: 13502, fault:15299. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1497 -[UP] flip: 496, stem: 11926, fault:15820. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1551 -[UP] flip: 132, stem: 10865, fault:15991. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1560 -[UP] flip: 59, stem: 12446, fault:16029. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1565 -[UP] flip: 0, stem: 12106, fault:17017. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1650 -[UP] flip: 321, stem: 11773, fault:16029. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1555 -[UP] flip: 309, stem: 12892, fault:16200. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1567 -[UP] flip: 268, stem: 14172, fault:15731. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1517 -[UP] flip: 484, stem: 15612, fault:15680. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1511 -[UP] flip: 71, stem: 14091, fault:15053. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1501 -[UP] flip: 190, stem: 14629, fault:14877. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1482 -[UP] flip: 0, stem: 13705, fault:15770. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1588 -[UP] flip: 338, stem: 13585, fault:15846. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1572 -[UP] flip: 62, stem: 14066, fault:16511. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1660 -[UP] flip: 119, stem: 15385, fault:16454. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1658 -[UP] flip: 245, stem: 16161, fault:16606. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1665 -[UP] flip: 407, stem: 17561, fault:16625. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1665 -[UP] flip: 463, stem: 15087, fault:16917. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1655 -[UP] flip: 73, stem: 16706, fault:16955. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1658 -[UP] flip: 0, stem: 13009, fault:17125. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1672 -[UP] flip: 322, stem: 13669, fault:17106. flip_cnt: 4, stem_cnt: 1399, fault_cnt:1671 -[UP] flip: 0, stem: 11323, fault:16818. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1658 -[UP] flip: 72, stem: 12266, fault:16610. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1651 -[UP] flip: 123, stem: 13767, fault:16591. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1650 -[UP] flip: 440, stem: 14412, fault:16591. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1652 -[UP] flip: 360, stem: 11067, fault:15225. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1480 -[UP] flip: 276, stem: 12528, fault:15168. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1472 -[UP] flip: 472, stem: 13897, fault:15016. flip_cnt: 6, stem_cnt: 1391, fault_cnt:1460 -[UP] flip: 0, stem: 13840, fault:15082. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1460 -[UP] flip: 82, stem: 11376, fault:14267. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1399 -[UP] flip: 146, stem: 12936, fault:14267. flip_cnt: 3, stem_cnt: 1392, fault_cnt:1396 -[UP] flip: 133, stem: 14496, fault:14286. flip_cnt: 3, stem_cnt: 1392, fault_cnt:1397 -[UP] flip: 0, stem: 12115, fault:14489. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1417 -[UP] flip: 574, stem: 10886, fault:14291. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1395 -[UP] flip: 0, stem: 12066, fault:13683. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1309 -[UP] flip: 218, stem: 13565, fault:13721. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1310 -[UP] flip: 118, stem: 14746, fault:13778. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1312 -[UP] flip: 314, stem: 14394, fault:13626. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1297 -[UP] flip: 0, stem: 10544, fault:14303. flip_cnt: 0, stem_cnt: 1384, fault_cnt:1396 -[UP] flip: 0, stem: 10744, fault:14531. flip_cnt: 0, stem_cnt: 1384, fault_cnt:1401 -[UP] flip: 0, stem: 12403, fault:14526. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1405 -[UP] flip: 249, stem: 13279, fault:14659. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1415 -[UP] flip: 77, stem: 12738, fault:14431. flip_cnt: 2, stem_cnt: 1390, fault_cnt:1392 -[UP] flip: 109, stem: 12142, fault:13937. flip_cnt: 2, stem_cnt: 1386, fault_cnt:1350 -[UP] flip: 291, stem: 12623, fault:13386. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1343 -[UP] flip: 395, stem: 14201, fault:13386. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1347 -[UP] flip: 480, stem: 14476, fault:14279. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1427 -[UP] flip: 128, stem: 11678, fault:13756. flip_cnt: 2, stem_cnt: 1390, fault_cnt:1387 -[UP] flip: 124, stem: 11187, fault:15371. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1536 -[UP] flip: 251, stem: 12748, fault:15371. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1538 -[UP] flip: 0, stem: 14168, fault:15143. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1501 -[UP] flip: 562, stem: 10743, fault:15653. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1526 -[UP] flip: 0, stem: 10201, fault:16280. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1572 -[UP] flip: 356, stem: 11621, fault:16280. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1568 -[UP] flip: 274, stem: 13041, fault:16223. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1559 -[UP] flip: 0, stem: 14442, fault:16223. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1559 -[UP] flip: 0, stem: 12986, fault:16261. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1565 -[UP] flip: 0, stem: 14526, fault:16261. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1565 -[UP] flip: 633, stem: 13612, fault:14912. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1445 -[UP] flip: 96, stem: 13346, fault:15121. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1473 -[UP] flip: 167, stem: 14945, fault:15178. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1476 -[UP] flip: 380, stem: 12773, fault:15007. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1427 -[UP] flip: 544, stem: 14113, fault:14969. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1422 -[UP] flip: 566, stem: 15654, fault:14931. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1418 -[UP] flip: 545, stem: 14669, fault:14741. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1410 -[UP] flip: 629, stem: 15227, fault:14665. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1411 -[UP] flip: 0, stem: 16647, fault:14665. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1411 -[UP] flip: 571, stem: 18047, fault:14665. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1408 -[UP] flip: 430, stem: 17028, fault:15003. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1477 -[UP] flip: 416, stem: 14197, fault:14092. flip_cnt: 4, stem_cnt: 1391, fault_cnt:1341 -[UP] flip: 0, stem: 13856, fault:13427. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1301 -[UP] flip: 547, stem: 13090, fault:13715. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1327 -[UP] flip: 0, stem: 13848, fault:13658. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1322 -[UP] flip: 620, stem: 15150, fault:13525. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1309 -[UP] flip: 337, stem: 16368, fault:13468. flip_cnt: 3, stem_cnt: 1400, fault_cnt:1306 -[UP] flip: 501, stem: 14025, fault:14462. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1416 -[UP] flip: 521, stem: 13162, fault:15621. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1574 -[UP] flip: 236, stem: 14763, fault:15621. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1573 -[UP] flip: 363, stem: 16203, fault:15566. flip_cnt: 3, stem_cnt: 1405, fault_cnt:1570 -[UP] flip: 561, stem: 16520, fault:15718. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1564 -[UP] flip: 317, stem: 15160, fault:16231. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1592 -[UP] flip: 503, stem: 13919, fault:16423. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1620 -[UP] flip: 544, stem: 14418, fault:16423. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1616 -[UP] flip: 0, stem: 15938, fault:16423. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1614 -[UP] flip: 566, stem: 13105, fault:15796. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1536 -[UP] flip: 379, stem: 14564, fault:15606. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1516 -[UP] flip: 616, stem: 15624, fault:15872. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1547 -[UP] flip: 182, stem: 17125, fault:15872. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1544 -[UP] flip: 456, stem: 17547, fault:15777. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1532 -[UP] flip: 549, stem: 18585, fault:15872. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1540 -[UP] flip: 605, stem: 19446, fault:15682. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1502 -[UP] flip: 641, stem: 21006, fault:15625. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1498 -[UP] flip: 341, stem: 16466, fault:15293. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1492 -[UP] flip: 0, stem: 17866, fault:15293. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1492 -[UP] flip: 358, stem: 16466, fault:16129. flip_cnt: 3, stem_cnt: 1402, fault_cnt:1561 -[UP] flip: 580, stem: 15075, fault:16457. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1609 -[UP] flip: 218, stem: 16314, fault:16438. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1611 -[UP] flip: 173, stem: 17455, fault:17027. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1696 -[UP] flip: 437, stem: 18736, fault:17027. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1694 -[UP] flip: 0, stem: 19494, fault:17046. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1697 -[UP] flip: 478, stem: 15132, fault:16590. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1675 -[UP] flip: 270, stem: 16292, fault:16552. flip_cnt: 3, stem_cnt: 1416, fault_cnt:1666 -[UP] flip: 490, stem: 17133, fault:16514. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1662 -[UP] flip: 186, stem: 17313, fault:16571. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1665 -[UP] flip: 619, stem: 18113, fault:16571. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1666 -[UP] flip: 535, stem: 19353, fault:16533. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1665 -[UP] flip: 346, stem: 20332, fault:16590. flip_cnt: 4, stem_cnt: 1416, fault_cnt:1666 -[UP] flip: 349, stem: 20310, fault:16951. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1691 -[UP] flip: 134, stem: 21391, fault:16894. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1688 -[UP] flip: 0, stem: 22391, fault:16894. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1688 -[UP] flip: 369, stem: 18614, fault:16485. flip_cnt: 3, stem_cnt: 1414, fault_cnt:1616 -[UP] flip: 675, stem: 19934, fault:16447. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1614 -[UP] flip: 473, stem: 17553, fault:16640. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1629 -[UP] flip: 0, stem: 18873, fault:16640. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1629 -[UP] flip: 0, stem: 20073, fault:16640. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1629 -[UP] flip: 720, stem: 17621, fault:16507. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1628 -[UP] flip: 495, stem: 18661, fault:15766. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1562 -[UP] flip: 352, stem: 19941, fault:15690. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1556 -[UP] flip: 363, stem: 21161, fault:15709. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1571 -[UP] flip: 0, stem: 21782, fault:15861. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1587 -[UP] flip: 704, stem: 23262, fault:15804. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1583 -[UP] flip: 421, stem: 23763, fault:15697. flip_cnt: 3, stem_cnt: 1405, fault_cnt:1573 -[UP] flip: 258, stem: 16948, fault:15526. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1537 -[UP] flip: 0, stem: 15165, fault:15963. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1588 -[UP] flip: 614, stem: 14640, fault:16570. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1647 -[UP] flip: 301, stem: 16141, fault:16475. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1625 -[UP] flip: 672, stem: 16884, fault:16380. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1608 -[UP] flip: 0, stem: 17625, fault:16361. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1607 -[UP] flip: 396, stem: 18865, fault:16342. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1606 -[UP] flip: 0, stem: 20105, fault:16342. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1606 -[UP] flip: 0, stem: 20924, fault:16304. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1610 -[UP] flip: 0, stem: 16787, fault:16087. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1556 -[UP] flip: 726, stem: 17928, fault:16068. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1554 -[UP] flip: 0, stem: 17865, fault:16162. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1577 -[UP] flip: 725, stem: 18865, fault:16162. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1573 -[UP] flip: 0, stem: 19912, fault:15934. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1548 -[UP] flip: 721, stem: 16770, fault:14984. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1432 -[UP] flip: 752, stem: 18110, fault:14946. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1426 -[UP] flip: 459, stem: 18145, fault:15725. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1491 -[UP] flip: 205, stem: 19726, fault:14851. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1421 -[UP] flip: 970, stem: 21186, fault:14813. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1417 -[UP] flip: 0, stem: 16587, fault:15475. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1485 -[UP] flip: 0, stem: 18148, fault:15475. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1485 -[UP] flip: 788, stem: 18907, fault:15418. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1478 -[UP] flip: 314, stem: 20388, fault:15399. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1477 -[UP] flip: 770, stem: 16992, fault:15715. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1538 -[UP] flip: 721, stem: 18290, fault:15658. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1532 -[UP] flip: 337, stem: 18932, fault:14841. flip_cnt: 3, stem_cnt: 1396, fault_cnt:1440 -[UP] flip: 253, stem: 20172, fault:14841. flip_cnt: 4, stem_cnt: 1396, fault_cnt:1442 -[UP] flip: 823, stem: 20830, fault:14936. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1457 -[UP] flip: 315, stem: 22110, fault:14879. flip_cnt: 3, stem_cnt: 1398, fault_cnt:1451 -[UP] flip: 803, stem: 23630, fault:14841. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1447 -[UP] flip: 0, stem: 24749, fault:14841. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1447 -[UP] flip: 244, stem: 26048, fault:14860. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1449 -[UP] flip: 0, stem: 19866, fault:15680. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1546 -[UP] flip: 240, stem: 18242, fault:14444. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1428 -[UP] flip: 0, stem: 17355, fault:15318. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1527 -[UP] flip: 667, stem: 20755, fault:15261. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1523 -[UP] flip: 0, stem: 22075, fault:15128. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1514 -[UP] flip: 438, stem: 22875, fault:15071. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1510 -[UP] flip: 0, stem: 19361, fault:14577. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1449 -[UP] flip: 0, stem: 18638, fault:14501. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1468 -[UP] flip: 1174, stem: 19798, fault:14463. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1464 -[UP] flip: 0, stem: 20898, fault:13798. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1403 -[UP] flip: 704, stem: 22158, fault:13760. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1399 -[UP] flip: 905, stem: 22478, fault:14463. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1447 -[UP] flip: 479, stem: 23658, fault:14406. flip_cnt: 3, stem_cnt: 1410, fault_cnt:1444 -[UP] flip: 497, stem: 24376, fault:14406. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1442 -[UP] flip: 1018, stem: 24519, fault:14121. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1416 -[UP] flip: 741, stem: 25599, fault:14083. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1413 -[UP] flip: 789, stem: 19443, fault:15280. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1530 -[UP] flip: 215, stem: 20783, fault:15242. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1525 -[UP] flip: 858, stem: 19983, fault:15907. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1575 -[UP] flip: 182, stem: 21464, fault:15888. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1574 -[UP] flip: 885, stem: 20404, fault:15831. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1570 -[UP] flip: 334, stem: 18342, fault:15850. flip_cnt: 3, stem_cnt: 1406, fault_cnt:1585 -[UP] flip: 861, stem: 19562, fault:15850. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1581 -[UP] flip: 0, stem: 20861, fault:15869. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1579 -[UP] flip: 747, stem: 21521, fault:15850. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1577 -[UP] flip: 703, stem: 22701, fault:15812. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1575 -[UP] flip: 160, stem: 24041, fault:15793. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1574 -[UP] flip: 0, stem: 20817, fault:16914. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1657 -[UP] flip: 553, stem: 22057, fault:16876. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1655 -[UP] flip: 0, stem: 23277, fault:17066. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1670 -[UP] flip: 943, stem: 19572, fault:17275. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1673 -[UP] flip: 670, stem: 20732, fault:17161. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1665 -[UP] flip: 496, stem: 21932, fault:17123. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1663 -[UP] flip: 690, stem: 22612, fault:17123. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1661 -[UP] flip: 479, stem: 22932, fault:17313. flip_cnt: 4, stem_cnt: 1416, fault_cnt:1671 -[UP] flip: 682, stem: 23772, fault:17256. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1665 -[UP] flip: 0, stem: 21913, fault:16344. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1560 -[UP] flip: 0, stem: 22813, fault:16344. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1560 -[UP] flip: 906, stem: 17690, fault:16933. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1621 -[UP] flip: 511, stem: 19010, fault:16857. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1617 -[UP] flip: 513, stem: 18848, fault:17712. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1687 -[UP] flip: 1055, stem: 18367, fault:17902. flip_cnt: 7, stem_cnt: 1421, fault_cnt:1709 -[UP] flip: 0, stem: 16909, fault:17997. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1711 -[UP] flip: 994, stem: 18309, fault:17978. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1709 -[UP] flip: 899, stem: 18348, fault:17978. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1707 -[UP] flip: 688, stem: 19246, fault:18073. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1713 -[UP] flip: 698, stem: 19706, fault:18187. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1724 -[UP] flip: 847, stem: 19167, fault:17883. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1690 -[UP] flip: 1061, stem: 18007, fault:17959. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1697 -[UP] flip: 809, stem: 18687, fault:17617. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1665 -[UP] flip: 735, stem: 19847, fault:17579. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1660 -[UP] flip: 513, stem: 20506, fault:17446. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1655 -[UP] flip: 0, stem: 20929, fault:17351. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1641 -[UP] flip: 0, stem: 21689, fault:17351. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1641 -[UP] flip: 1131, stem: 22429, fault:17256. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1634 -[UP] flip: 728, stem: 23569, fault:16971. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1600 -[UP] flip: 1010, stem: 24689, fault:16876. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1593 -[UP] flip: 327, stem: 25489, fault:16838. flip_cnt: 3, stem_cnt: 1419, fault_cnt:1589 -[UP] flip: 926, stem: 20993, fault:16667. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1580 -[UP] flip: 0, stem: 22253, fault:16667. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1580 -[UP] flip: 827, stem: 23533, fault:16610. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1577 -[UP] flip: 1037, stem: 23512, fault:16496. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1569 -[UP] flip: 0, stem: 24633, fault:16306. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1548 -[UP] flip: 243, stem: 24992, fault:16192. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1540 -[UP] flip: 305, stem: 24053, fault:15394. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1469 -[UP] flip: 623, stem: 23795, fault:13874. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1323 -[UP] flip: 1425, stem: 21938, fault:13266. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1275 -[UP] flip: 1348, stem: 22137, fault:13513. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1294 -[UP] flip: 286, stem: 23356, fault:13532. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1296 -[UP] flip: 1367, stem: 21779, fault:14672. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1420 -[UP] flip: 528, stem: 18817, fault:15565. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1504 -[UP] flip: 0, stem: 19796, fault:15546. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1503 -[UP] flip: 261, stem: 20118, fault:15755. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1514 -[UP] flip: 0, stem: 20857, fault:16116. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1552 -[UP] flip: 926, stem: 21977, fault:16078. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1550 -[UP] flip: 0, stem: 23097, fault:15945. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1539 -[UP] flip: 614, stem: 22358, fault:15318. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1495 -[UP] flip: 0, stem: 23297, fault:15299. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1494 -[UP] flip: 347, stem: 24458, fault:15280. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1493 -[UP] flip: 964, stem: 25576, fault:15299. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1495 -[UP] flip: 723, stem: 26696, fault:15356. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1498 -[UP] flip: 260, stem: 23878, fault:15147. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1516 -[UP] flip: 296, stem: 24738, fault:15318. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1522 -[UP] flip: 437, stem: 25558, fault:15337. flip_cnt: 3, stem_cnt: 1410, fault_cnt:1523 -[UP] flip: 338, stem: 26679, fault:16629. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1632 -[UP] flip: 882, stem: 23437, fault:15269. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1487 -[UP] flip: 496, stem: 24977, fault:15212. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1479 -[UP] flip: 550, stem: 26637, fault:15212. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1477 -[UP] flip: 249, stem: 24835, fault:15554. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1507 -[UP] flip: 1085, stem: 26155, fault:15497. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1504 -[UP] flip: 1115, stem: 27535, fault:15440. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1500 -[UP] flip: 1379, stem: 27030, fault:15592. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1501 -[UP] flip: 934, stem: 28070, fault:15573. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1499 -[UP] flip: 0, stem: 29231, fault:15573. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1499 -[UP] flip: 272, stem: 21567, fault:14741. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1422 -[UP] flip: 632, stem: 22369, fault:14760. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1422 -[UP] flip: 581, stem: 23369, fault:14779. flip_cnt: 4, stem_cnt: 1419, fault_cnt:1420 -[UP] flip: 435, stem: 24488, fault:14760. flip_cnt: 3, stem_cnt: 1420, fault_cnt:1427 -[UP] flip: 309, stem: 25589, fault:14741. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1426 -[UP] flip: 323, stem: 26430, fault:14741. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1425 -[UP] flip: 647, stem: 26810, fault:14646. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1416 -[UP] flip: 1039, stem: 24886, fault:15197. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1465 -[UP] flip: 387, stem: 25466, fault:15292. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1462 -[UP] flip: 0, stem: 27106, fault:15292. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1462 -[UP] flip: 570, stem: 28747, fault:15292. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1460 -[UP] flip: 1111, stem: 30147, fault:15235. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1453 -[UP] flip: 970, stem: 24843, fault:15530. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1457 -[UP] flip: 748, stem: 25060, fault:16707. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1598 -[UP] flip: 1278, stem: 26000, fault:16612. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1585 -[UP] flip: 662, stem: 27040, fault:17030. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1615 -[UP] flip: 1043, stem: 24379, fault:17334. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1631 -[UP] flip: 0, stem: 25739, fault:17296. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1629 -[UP] flip: 0, stem: 26939, fault:17296. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1629 -[UP] flip: 0, stem: 28060, fault:17296. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1629 -[UP] flip: 1026, stem: 29120, fault:17296. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1629 -[UP] flip: 735, stem: 28795, fault:17657. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1658 -[UP] flip: 685, stem: 29235, fault:17600. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1650 -[UP] flip: 615, stem: 30335, fault:17866. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1680 -[UP] flip: 1080, stem: 31495, fault:17847. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1680 -[UP] flip: 897, stem: 32375, fault:17372. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1612 -[UP] flip: 243, stem: 33716, fault:17353. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1609 -[UP] flip: 554, stem: 30364, fault:16365. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1518 -[UP] flip: 600, stem: 28021, fault:17733. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1638 -[UP] flip: 0, stem: 29242, fault:16384. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1509 -[UP] flip: 757, stem: 30382, fault:16346. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1507 -[UP] flip: 912, stem: 30122, fault:16289. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1504 -[UP] flip: 688, stem: 26541, fault:15662. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1441 -[UP] flip: 0, stem: 25060, fault:15605. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1429 -[UP] flip: 0, stem: 26360, fault:15605. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1429 -[UP] flip: 674, stem: 25133, fault:17144. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1605 -[UP] flip: 1240, stem: 26131, fault:17163. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1607 -[UP] flip: 691, stem: 25593, fault:17467. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1628 -[UP] flip: 1183, stem: 26673, fault:17410. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1625 -[UP] flip: 0, stem: 26454, fault:16555. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1556 -[UP] flip: 1134, stem: 26071, fault:16650. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1562 -[UP] flip: 347, stem: 25912, fault:16954. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1591 -[UP] flip: 1391, stem: 25932, fault:16916. flip_cnt: 6, stem_cnt: 1416, fault_cnt:1587 -[UP] flip: 292, stem: 26492, fault:16859. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1584 -[UP] flip: 1216, stem: 26332, fault:17163. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1612 -[UP] flip: 1215, stem: 27212, fault:17106. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1608 -[UP] flip: 1295, stem: 27494, fault:17030. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1593 -[UP] flip: 928, stem: 24589, fault:17714. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1682 -[UP] flip: 1122, stem: 25128, fault:17714. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1690 -[UP] flip: 1302, stem: 26268, fault:17600. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1684 -[UP] flip: 598, stem: 26616, fault:17657. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1683 -[UP] flip: 1453, stem: 27976, fault:17657. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1679 -[UP] flip: 1388, stem: 23838, fault:16935. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1623 -[UP] flip: 542, stem: 22168, fault:16907. flip_cnt: 3, stem_cnt: 1400, fault_cnt:1617 -[UP] flip: 0, stem: 23265, fault:16945. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1611 -[UP] flip: 1255, stem: 24586, fault:16622. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1584 -[UP] flip: 245, stem: 25967, fault:16603. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1583 -[UP] flip: 957, stem: 22085, fault:16774. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1617 -[UP] flip: 274, stem: 23766, fault:16717. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1608 -[UP] flip: 0, stem: 22642, fault:16660. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1604 -[UP] flip: 0, stem: 23660, fault:16660. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1604 -[UP] flip: 900, stem: 25039, fault:16679. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1602 -[UP] flip: 734, stem: 22682, fault:16793. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1616 -[UP] flip: 1238, stem: 24082, fault:16755. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1613 -[UP] flip: 1139, stem: 21962, fault:16717. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1609 -[UP] flip: 0, stem: 17378, fault:16584. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1578 -[UP] flip: 0, stem: 18358, fault:16584. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1578 -[UP] flip: 745, stem: 18339, fault:16546. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1570 -[UP] flip: 1680, stem: 19619, fault:16508. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1566 -[UP] flip: 918, stem: 18597, fault:16489. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1565 -[UP] flip: 1391, stem: 19018, fault:16508. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1562 -[UP] flip: 0, stem: 20138, fault:16508. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1562 -[UP] flip: 496, stem: 19617, fault:16489. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1561 -[UP] flip: 0, stem: 20858, fault:16432. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1554 -[UP] flip: 379, stem: 14461, fault:16737. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1577 -[UP] flip: 0, stem: 15700, fault:17212. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1613 -[UP] flip: 1338, stem: 13239, fault:17193. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1609 -[UP] flip: 0, stem: 13101, fault:17212. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1602 -[UP] flip: 0, stem: 13281, fault:17364. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1612 -[UP] flip: 898, stem: 14682, fault:17326. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1610 -[UP] flip: 1038, stem: 16102, fault:16604. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1559 -[UP] flip: 0, stem: 16781, fault:17136. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1608 -[UP] flip: 1195, stem: 12584, fault:16680. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1550 -[UP] flip: 814, stem: 13844, fault:16851. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1575 -[UP] flip: 1369, stem: 15264, fault:16851. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1572 -[UP] flip: 969, stem: 16463, fault:16775. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1566 -[UP] flip: 0, stem: 17863, fault:16775. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1566 -[UP] flip: 0, stem: 19223, fault:16775. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1566 -[UP] flip: 1109, stem: 19925, fault:16718. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1563 -[UP] flip: 1286, stem: 15527, fault:16452. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1549 -[UP] flip: 337, stem: 12343, fault:16509. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1562 -[UP] flip: 1602, stem: 13643, fault:16509. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1558 -[UP] flip: 1292, stem: 13061, fault:16737. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1578 -[UP] flip: 416, stem: 13839, fault:16737. flip_cnt: 3, stem_cnt: 1409, fault_cnt:1579 -[UP] flip: 1706, stem: 14619, fault:16661. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1579 -[UP] flip: 0, stem: 15839, fault:16661. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1579 -[UP] flip: 367, stem: 15000, fault:17041. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1615 -[UP] flip: 0, stem: 15423, fault:16813. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1600 -[UP] flip: 0, stem: 14161, fault:16471. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1559 -[UP] flip: 858, stem: 15341, fault:16433. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1557 -[UP] flip: 1219, stem: 16621, fault:16471. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1558 -[UP] flip: 361, stem: 18002, fault:16281. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1547 -[UP] flip: 1118, stem: 15079, fault:17060. flip_cnt: 4, stem_cnt: 1409, fault_cnt:1623 -[UP] flip: 1358, stem: 16279, fault:17003. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1617 -[UP] flip: 457, stem: 17220, fault:16832. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1604 -[UP] flip: 442, stem: 14361, fault:17269. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1642 -[UP] flip: 1673, stem: 15821, fault:17231. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1638 -[UP] flip: 473, stem: 17141, fault:17231. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1635 -[UP] flip: 923, stem: 17081, fault:17250. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1635 -[UP] flip: 0, stem: 18162, fault:17155. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1626 -[UP] flip: 359, stem: 12700, fault:17782. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1655 -[UP] flip: 482, stem: 13920, fault:17744. flip_cnt: 3, stem_cnt: 1408, fault_cnt:1652 -[UP] flip: 1217, stem: 14460, fault:17668. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1648 -[UP] flip: 1188, stem: 12657, fault:17744. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1660 -[UP] flip: 1114, stem: 14037, fault:17706. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1658 -[UP] flip: 1232, stem: 15257, fault:17706. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1654 -[UP] flip: 745, stem: 16377, fault:17630. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1648 -[UP] flip: 900, stem: 17397, fault:17611. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1646 -[UP] flip: 1493, stem: 18697, fault:17193. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1609 -[UP] flip: 0, stem: 19817, fault:17193. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1609 -[UP] flip: 624, stem: 18958, fault:17136. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1603 -[UP] flip: 509, stem: 14324, fault:16262. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1482 -[UP] flip: 300, stem: 15684, fault:16262. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1481 -[UP] flip: 0, stem: 16943, fault:16262. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1481 -[UP] flip: 420, stem: 16540, fault:16376. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1504 -[UP] flip: 0, stem: 16956, fault:16338. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1497 -[UP] flip: 1171, stem: 17597, fault:16281. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1492 -[UP] flip: 473, stem: 18897, fault:16281. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1491 -[UP] flip: 1445, stem: 17977, fault:16319. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1491 -[UP] flip: 0, stem: 19177, fault:16224. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1483 -[UP] flip: 1855, stem: 20417, fault:16186. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1479 -[UP] flip: 1738, stem: 20997, fault:16129. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1475 -[UP] flip: 715, stem: 12033, fault:17726. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1643 -[UP] flip: 999, stem: 13353, fault:17403. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1601 -[UP] flip: 1654, stem: 14652, fault:17365. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1599 -[UP] flip: 0, stem: 13596, fault:17707. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1633 -[UP] flip: 1504, stem: 14976, fault:17669. flip_cnt: 6, stem_cnt: 1412, fault_cnt:1629 -[UP] flip: 1587, stem: 16276, fault:17631. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1626 -[UP] flip: 958, stem: 17117, fault:17612. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1627 -[UP] flip: 1030, stem: 18035, fault:17536. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1618 -[UP] flip: 1728, stem: 19575, fault:17517. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1616 -[UP] flip: 1808, stem: 22954, fault:17441. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1612 -[UP] flip: 1192, stem: 24114, fault:17422. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1610 -[UP] flip: 0, stem: 24974, fault:17422. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1610 -[UP] flip: 1485, stem: 25454, fault:17365. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1613 -[UP] flip: 1578, stem: 17197, fault:16586. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1524 -[UP] flip: 444, stem: 18678, fault:16548. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1521 -[UP] flip: 408, stem: 19857, fault:16548. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1520 -[UP] flip: 1105, stem: 20558, fault:16472. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1518 -[UP] flip: 1892, stem: 21878, fault:16415. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1514 -[UP] flip: 412, stem: 17405, fault:15332. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1410 -[UP] flip: 1621, stem: 18825, fault:15275. flip_cnt: 6, stem_cnt: 1403, fault_cnt:1405 -[UP] flip: 418, stem: 20164, fault:15294. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1406 -[UP] flip: 716, stem: 19727, fault:14705. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1341 -[UP] flip: 0, stem: 21128, fault:14686. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1340 -[UP] flip: 464, stem: 21188, fault:14820. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1346 -[UP] flip: 1455, stem: 22307, fault:14801. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1349 -[UP] flip: 428, stem: 23627, fault:14782. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1348 -[UP] flip: 1714, stem: 25127, fault:14744. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1346 -[UP] flip: 383, stem: 22193, fault:14288. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1312 -[UP] flip: 1507, stem: 22931, fault:14326. flip_cnt: 4, stem_cnt: 1397, fault_cnt:1315 -[UP] flip: 1491, stem: 23851, fault:14440. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1322 -[UP] flip: 1516, stem: 22494, fault:12446. flip_cnt: 4, stem_cnt: 1394, fault_cnt:1136 -[UP] flip: 0, stem: 22894, fault:12408. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1131 -[UP] flip: 1158, stem: 22279, fault:12485. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1134 -[UP] flip: 1354, stem: 23180, fault:12713. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1150 -[UP] flip: 0, stem: 22720, fault:12637. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1145 -[UP] flip: 463, stem: 21002, fault:10718. flip_cnt: 2, stem_cnt: 1386, fault_cnt:989 -[UP] flip: 0, stem: 21240, fault:10737. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1000 -[UP] flip: 0, stem: 23000, fault:10737. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1000 -[UP] flip: 1584, stem: 24418, fault:10775. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1002 -[UP] flip: 0, stem: 24797, fault:11478. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1085 -[UP] flip: 1022, stem: 18878, fault:13815. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1291 -[UP] flip: 1199, stem: 20558, fault:13777. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1286 -[UP] flip: 0, stem: 20736, fault:13777. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1286 -[UP] flip: 1718, stem: 19515, fault:13834. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1293 -[UP] flip: 966, stem: 20955, fault:13834. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1291 -[UP] flip: 0, stem: 21333, fault:14100. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1312 -[UP] flip: 0, stem: 22873, fault:14100. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1312 -[UP] flip: 0, stem: 24414, fault:14100. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1312 -[UP] flip: 0, stem: 24516, fault:14233. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1339 -[UP] flip: 0, stem: 21614, fault:14689. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1380 -[UP] flip: 1768, stem: 21954, fault:14594. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1373 -[UP] flip: 0, stem: 23354, fault:14499. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1365 -[UP] flip: 0, stem: 23373, fault:14385. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1349 -[UP] flip: 484, stem: 24413, fault:14385. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1348 -[UP] flip: 468, stem: 20230, fault:14689. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1403 -[UP] flip: 671, stem: 21770, fault:14689. flip_cnt: 3, stem_cnt: 1398, fault_cnt:1402 -[UP] flip: 0, stem: 23130, fault:14689. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1402 -[UP] flip: 0, stem: 24550, fault:14689. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1402 -[UP] flip: 0, stem: 24710, fault:14689. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1402 -[UP] flip: 1384, stem: 25530, fault:14670. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1398 -[UP] flip: 0, stem: 25192, fault:14366. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1377 -[UP] flip: 740, stem: 29452, fault:14347. flip_cnt: 3, stem_cnt: 1396, fault_cnt:1376 -[UP] flip: 0, stem: 30511, fault:14746. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1407 -[UP] flip: 0, stem: 28674, fault:14556. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1401 -[UP] flip: 447, stem: 29915, fault:14537. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1398 -[UP] flip: 1226, stem: 31315, fault:14499. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1394 -[UP] flip: 1419, stem: 29931, fault:14936. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1438 -[UP] flip: 0, stem: 26007, fault:15221. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1461 -[UP] flip: 0, stem: 24130, fault:15753. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1488 -[UP] flip: 1066, stem: 24650, fault:15772. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1488 -[UP] flip: 489, stem: 25789, fault:15905. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1497 -[UP] flip: 1000, stem: 27116, fault:15829. flip_cnt: 4, stem_cnt: 1392, fault_cnt:1496 -[UP] flip: 857, stem: 27613, fault:16209. flip_cnt: 3, stem_cnt: 1395, fault_cnt:1545 -[UP] flip: 1329, stem: 29152, fault:16247. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1548 -[UP] flip: 0, stem: 30792, fault:16399. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1559 -[UP] flip: 1244, stem: 23655, fault:15962. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1505 -[UP] flip: 806, stem: 25035, fault:15848. flip_cnt: 3, stem_cnt: 1393, fault_cnt:1495 -[UP] flip: 1641, stem: 25795, fault:15810. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1492 -[UP] flip: 0, stem: 16533, fault:15487. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1450 -[UP] flip: 999, stem: 17993, fault:15506. flip_cnt: 4, stem_cnt: 1395, fault_cnt:1450 -[UP] flip: 555, stem: 19090, fault:15164. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1426 -[UP] flip: 0, stem: 20551, fault:15316. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1437 -[UP] flip: 1422, stem: 19326, fault:15449. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1446 -[UP] flip: 512, stem: 19407, fault:15297. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1423 -[UP] flip: 497, stem: 19987, fault:16380. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1554 -[UP] flip: 1386, stem: 20688, fault:16247. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1546 -[UP] flip: 0, stem: 21668, fault:16209. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1539 -[UP] flip: 538, stem: 23108, fault:16228. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1540 -[UP] flip: 1840, stem: 21664, fault:16608. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1577 -[UP] flip: 457, stem: 22803, fault:16627. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1578 -[UP] flip: 0, stem: 24043, fault:16627. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1578 -[UP] flip: 560, stem: 22182, fault:16798. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1594 -[UP] flip: 1358, stem: 23322, fault:16760. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1590 -[UP] flip: 1067, stem: 22343, fault:16722. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1595 -[UP] flip: 383, stem: 23482, fault:15924. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1501 -[UP] flip: 1865, stem: 24561, fault:15981. flip_cnt: 6, stem_cnt: 1407, fault_cnt:1502 -[UP] flip: 564, stem: 25879, fault:15981. flip_cnt: 3, stem_cnt: 1409, fault_cnt:1501 -[UP] flip: 2236, stem: 27299, fault:15943. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1497 -[UP] flip: 400, stem: 28500, fault:15924. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1496 -[UP] flip: 1870, stem: 29500, fault:15867. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1490 -[UP] flip: 500, stem: 23703, fault:17159. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1647 -[UP] flip: 2296, stem: 25083, fault:17121. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1643 -[UP] flip: 0, stem: 26243, fault:17121. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1643 -[UP] flip: 0, stem: 22700, fault:16247. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1561 -[UP] flip: 1213, stem: 24020, fault:16209. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1559 -[UP] flip: 1260, stem: 25520, fault:16190. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1557 -[UP] flip: 1040, stem: 22697, fault:16361. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1590 -[UP] flip: 1857, stem: 23857, fault:16361. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1586 -[UP] flip: 0, stem: 24915, fault:16342. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1588 -[UP] flip: 0, stem: 26095, fault:16342. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1588 -[UP] flip: 0, stem: 27355, fault:16342. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1588 -[UP] flip: 0, stem: 28215, fault:16456. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1595 -[UP] flip: 1918, stem: 29295, fault:16456. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1593 -[UP] flip: 1008, stem: 29495, fault:16418. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1595 -[UP] flip: 1522, stem: 30515, fault:16380. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1589 -[UP] flip: 580, stem: 31696, fault:16361. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1586 -[UP] flip: 0, stem: 32234, fault:16304. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1583 -[UP] flip: 1539, stem: 28736, fault:16266. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1598 -[UP] flip: 1992, stem: 30016, fault:16209. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1594 -[UP] flip: 2221, stem: 30836, fault:16133. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1585 -[UP] flip: 1389, stem: 31615, fault:15981. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1572 -[UP] flip: 540, stem: 32656, fault:15924. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1569 -[UP] flip: 0, stem: 33856, fault:15924. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1569 -[UP] flip: 2071, stem: 34976, fault:15905. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1567 -[UP] flip: 0, stem: 36056, fault:15905. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1567 -[UP] flip: 0, stem: 36817, fault:15962. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1566 -[UP] flip: 1547, stem: 38017, fault:15962. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1562 -[UP] flip: 524, stem: 37597, fault:15905. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1551 -[UP] flip: 1974, stem: 38597, fault:15905. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1549 -[UP] flip: 1848, stem: 33237, fault:16000. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1573 -[UP] flip: 1934, stem: 34097, fault:15962. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1569 -[UP] flip: 1755, stem: 35677, fault:15962. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1566 -[UP] flip: 2355, stem: 37037, fault:15924. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1562 -[UP] flip: 428, stem: 38098, fault:15905. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1559 -[UP] flip: 1593, stem: 39199, fault:15848. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1556 -[UP] flip: 1665, stem: 39519, fault:15848. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1557 -[UP] flip: 1449, stem: 34933, fault:15219. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1478 -[UP] flip: 1571, stem: 36533, fault:14991. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1422 -[UP] flip: 0, stem: 38193, fault:14991. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1422 -[UP] flip: 1958, stem: 39533, fault:14972. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1420 -[UP] flip: 1005, stem: 40633, fault:14820. flip_cnt: 4, stem_cnt: 1395, fault_cnt:1412 -[UP] flip: 558, stem: 40173, fault:14763. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1417 -[UP] flip: 2103, stem: 41393, fault:14725. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1413 -[UP] flip: 1839, stem: 41753, fault:14668. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1409 -[UP] flip: 1477, stem: 32185, fault:15514. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1522 -[UP] flip: 0, stem: 36545, fault:15343. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1506 -[UP] flip: 2486, stem: 37424, fault:15267. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1508 -[UP] flip: 1821, stem: 38365, fault:15248. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1506 -[UP] flip: 1419, stem: 39545, fault:15229. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1504 -[UP] flip: 0, stem: 40625, fault:15153. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1499 -[UP] flip: 2446, stem: 40345, fault:14982. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1486 -[UP] flip: 0, stem: 41125, fault:14659. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1455 -[UP] flip: 464, stem: 41806, fault:14659. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1452 -[UP] flip: 2340, stem: 42686, fault:14621. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1448 -[UP] flip: 823, stem: 41704, fault:14545. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1442 -[UP] flip: 1860, stem: 42584, fault:14507. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1439 -[UP] flip: 1902, stem: 41045, fault:14488. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1439 -[UP] flip: 2213, stem: 42465, fault:14697. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1453 -[UP] flip: 1970, stem: 43585, fault:14640. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1449 -[UP] flip: 1578, stem: 44845, fault:14545. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1444 -[UP] flip: 1145, stem: 44146, fault:14469. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1434 -[UP] flip: 800, stem: 42625, fault:12398. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1218 -[UP] flip: 0, stem: 35405, fault:12474. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1215 -[UP] flip: 0, stem: 32085, fault:12816. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1261 -[UP] flip: 0, stem: 33006, fault:12816. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1261 -[UP] flip: 1991, stem: 32626, fault:12778. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1258 -[UP] flip: 1864, stem: 31707, fault:13709. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1330 -[UP] flip: 468, stem: 32086, fault:14963. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1454 -[UP] flip: 2187, stem: 33486, fault:14963. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1450 -[UP] flip: 0, stem: 34726, fault:14963. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1450 -[UP] flip: 0, stem: 36246, fault:14963. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1450 -[UP] flip: 443, stem: 37365, fault:14906. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1447 -[UP] flip: 0, stem: 39145, fault:14906. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1447 -[UP] flip: 0, stem: 40625, fault:14906. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1447 -[UP] flip: 0, stem: 41806, fault:14906. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1447 -[UP] flip: 0, stem: 41925, fault:14982. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1457 -[UP] flip: 459, stem: 42707, fault:14982. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1454 -[UP] flip: 1297, stem: 33150, fault:15761. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1558 -[UP] flip: 991, stem: 34190, fault:16103. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1582 -[UP] flip: 2125, stem: 35569, fault:16236. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1596 -[UP] flip: 0, stem: 34506, fault:16654. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1634 -[UP] flip: 1384, stem: 35525, fault:16692. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1636 -[UP] flip: 600, stem: 37044, fault:16749. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1639 -[UP] flip: 0, stem: 37304, fault:16692. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1653 -[UP] flip: 1893, stem: 37905, fault:16863. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1672 -[UP] flip: 616, stem: 39165, fault:16863. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1669 -[UP] flip: 1358, stem: 39065, fault:16901. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1670 -[UP] flip: 1080, stem: 38285, fault:16977. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1677 -[UP] flip: 2032, stem: 38046, fault:17281. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1720 -[UP] flip: 1490, stem: 38725, fault:17186. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1715 -[UP] flip: 2420, stem: 39565, fault:17129. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1711 -[UP] flip: 1270, stem: 40945, fault:17072. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1707 -[UP] flip: 2030, stem: 34898, fault:17604. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1778 -[UP] flip: 557, stem: 34699, fault:17395. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1751 -[UP] flip: 0, stem: 35379, fault:17452. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1761 -[UP] flip: 572, stem: 33660, fault:17395. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1757 -[UP] flip: 2596, stem: 33200, fault:17395. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1753 -[UP] flip: 1542, stem: 34297, fault:17395. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1750 -[UP] flip: 1577, stem: 35636, fault:17604. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1774 -[UP] flip: 553, stem: 35599, fault:17452. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1761 -[UP] flip: 1100, stem: 36919, fault:17395. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1757 -[UP] flip: 2078, stem: 37698, fault:17338. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1751 -[UP] flip: 1664, stem: 38618, fault:17281. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1747 -[UP] flip: 2907, stem: 39418, fault:17224. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1743 -[UP] flip: 876, stem: 32471, fault:17661. flip_cnt: 3, stem_cnt: 1417, fault_cnt:1766 -[UP] flip: 2479, stem: 33631, fault:17623. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1760 -[UP] flip: 484, stem: 34731, fault:17566. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1757 -[UP] flip: 0, stem: 36031, fault:17566. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1757 -[UP] flip: 568, stem: 37312, fault:17509. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1754 -[UP] flip: 1638, stem: 38092, fault:17509. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1750 -[UP] flip: 1338, stem: 39033, fault:17509. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1746 -[UP] flip: 1459, stem: 37792, fault:17490. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1734 -[UP] flip: 1540, stem: 38752, fault:17452. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1732 -[UP] flip: 529, stem: 39774, fault:17376. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1726 -[UP] flip: 1844, stem: 40174, fault:17338. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1723 -[UP] flip: 945, stem: 37833, fault:17908. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1779 -[UP] flip: 0, stem: 38571, fault:17908. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1779 -[UP] flip: 1425, stem: 39611, fault:17889. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1777 -[UP] flip: 2475, stem: 35731, fault:17889. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1767 -[UP] flip: 1640, stem: 37032, fault:17775. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1758 -[UP] flip: 2025, stem: 38272, fault:17680. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1748 -[UP] flip: 1991, stem: 39112, fault:17414. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1726 -[UP] flip: 2244, stem: 40312, fault:17357. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1719 -[UP] flip: 2318, stem: 41532, fault:17300. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1715 -[UP] flip: 1276, stem: 39232, fault:17281. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1714 -[UP] flip: 1136, stem: 40552, fault:17262. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1712 -[UP] flip: 958, stem: 39873, fault:17053. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1688 -[UP] flip: 2114, stem: 39233, fault:16901. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1677 -[UP] flip: 746, stem: 40214, fault:16787. flip_cnt: 3, stem_cnt: 1414, fault_cnt:1664 -[UP] flip: 1194, stem: 43075, fault:16711. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1653 -[UP] flip: 1291, stem: 43636, fault:16673. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1652 -[UP] flip: 1718, stem: 44497, fault:14830. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1422 -[UP] flip: 624, stem: 40081, fault:15457. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1478 -[UP] flip: 2051, stem: 41941, fault:15400. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1474 -[UP] flip: 1231, stem: 43041, fault:14716. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1408 -[UP] flip: 0, stem: 41701, fault:14697. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1406 -[UP] flip: 586, stem: 42740, fault:14640. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1403 -[UP] flip: 2855, stem: 44060, fault:14583. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1399 -[UP] flip: 1624, stem: 44780, fault:14545. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1397 -[UP] flip: 759, stem: 44884, fault:14469. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1392 -[UP] flip: 1989, stem: 46884, fault:14469. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1389 -[UP] flip: 3067, stem: 31203, fault:15913. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1624 -[UP] flip: 2328, stem: 29484, fault:15951. flip_cnt: 6, stem_cnt: 1404, fault_cnt:1625 -[UP] flip: 0, stem: 31365, fault:16008. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1629 -[UP] flip: 0, stem: 32465, fault:16008. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1629 -[UP] flip: 2094, stem: 28864, fault:15951. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1654 -[UP] flip: 1981, stem: 28424, fault:15951. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1650 -[UP] flip: 0, stem: 28523, fault:16027. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1668 -[UP] flip: 1299, stem: 25203, fault:15609. flip_cnt: 4, stem_cnt: 1405, fault_cnt:1667 -[UP] flip: 2322, stem: 26142, fault:15628. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1671 -[UP] flip: 1122, stem: 27283, fault:15552. flip_cnt: 4, stem_cnt: 1405, fault_cnt:1656 -[UP] flip: 0, stem: 28663, fault:15552. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1656 -[UP] flip: 0, stem: 26739, fault:14830. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1559 -[UP] flip: 0, stem: 27938, fault:14830. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1559 -[UP] flip: 562, stem: 28381, fault:14659. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1540 -[UP] flip: 3120, stem: 29680, fault:15115. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1612 -[UP] flip: 2378, stem: 29640, fault:15115. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1608 -[UP] flip: 577, stem: 30739, fault:14944. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1594 -[UP] flip: 2207, stem: 28800, fault:14944. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1588 -[UP] flip: 2487, stem: 29780, fault:14887. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1581 -[UP] flip: 1321, stem: 30300, fault:14944. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1585 -[UP] flip: 1372, stem: 31461, fault:14925. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1583 -[UP] flip: 574, stem: 25585, fault:13918. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1517 -[UP] flip: 2099, stem: 26925, fault:13861. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1514 -[UP] flip: 2189, stem: 28004, fault:13823. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1510 -[UP] flip: 681, stem: 29204, fault:13747. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1506 -[UP] flip: 2336, stem: 27045, fault:13272. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1454 -[UP] flip: 834, stem: 28225, fault:13253. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1453 -[UP] flip: 0, stem: 26867, fault:13481. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1467 -[UP] flip: 684, stem: 28126, fault:13500. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1468 -[UP] flip: 589, stem: 29168, fault:13652. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1476 -[UP] flip: 548, stem: 30289, fault:13633. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1475 -[UP] flip: 0, stem: 30704, fault:13842. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1490 -[UP] flip: 2110, stem: 31924, fault:13804. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1486 -[UP] flip: 494, stem: 24260, fault:12379. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1304 -[UP] flip: 624, stem: 22519, fault:12018. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1257 -[UP] flip: 2536, stem: 24139, fault:12113. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1266 -[UP] flip: 1317, stem: 24418, fault:13234. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1370 -[UP] flip: 593, stem: 22072, fault:13291. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1390 -[UP] flip: 2292, stem: 23452, fault:13462. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1403 -[UP] flip: 1784, stem: 22433, fault:13367. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1393 -[UP] flip: 0, stem: 22493, fault:13348. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1395 -[UP] flip: 0, stem: 22953, fault:13348. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1396 -[UP] flip: 2032, stem: 21473, fault:13272. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1398 -[UP] flip: 0, stem: 22693, fault:13272. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1398 -[UP] flip: 1344, stem: 20070, fault:13006. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1369 -[UP] flip: 664, stem: 20711, fault:13215. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1381 -[UP] flip: 1314, stem: 20772, fault:13272. flip_cnt: 4, stem_cnt: 1416, fault_cnt:1369 -[UP] flip: 2176, stem: 20930, fault:13804. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1410 -[UP] flip: 2424, stem: 21930, fault:15267. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1558 -[UP] flip: 2625, stem: 22570, fault:15172. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1552 -[UP] flip: 2468, stem: 23510, fault:15134. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1550 -[UP] flip: 2196, stem: 24230, fault:15134. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1546 -[UP] flip: 643, stem: 21790, fault:15115. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1541 -[UP] flip: 0, stem: 22750, fault:15115. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1541 -[UP] flip: 2613, stem: 22870, fault:15058. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1537 -[UP] flip: 1736, stem: 21013, fault:14203. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1407 -[UP] flip: 0, stem: 21774, fault:12797. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1284 -[UP] flip: 1927, stem: 22634, fault:12778. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1282 -[UP] flip: 0, stem: 15597, fault:12778. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1273 -[UP] flip: 0, stem: 14056, fault:11391. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1104 -[UP] flip: 2048, stem: 15036, fault:11353. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1100 -[UP] flip: 813, stem: 15397, fault:11296. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1085 -[UP] flip: 495, stem: 16455, fault:11315. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1086 -[UP] flip: 2020, stem: 16675, fault:11429. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1093 -[UP] flip: 3140, stem: 18015, fault:11372. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1087 -[UP] flip: 0, stem: 17036, fault:12265. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1236 -[UP] flip: 2545, stem: 18137, fault:12227. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1232 -[UP] flip: 2077, stem: 15548, fault:13424. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1359 -[UP] flip: 1569, stem: 16129, fault:15248. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1554 -[UP] flip: 0, stem: 16647, fault:15400. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1571 -[UP] flip: 1999, stem: 17687, fault:15381. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1569 -[UP] flip: 2267, stem: 18887, fault:15381. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1560 -[UP] flip: 0, stem: 19827, fault:15381. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1560 -[UP] flip: 0, stem: 20767, fault:15381. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1560 -[UP] flip: 0, stem: 24067, fault:15381. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1560 -[UP] flip: 1477, stem: 24128, fault:15400. flip_cnt: 4, stem_cnt: 1420, fault_cnt:1559 -[UP] flip: 3077, stem: 24589, fault:15438. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1565 -[UP] flip: 598, stem: 25349, fault:15419. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1564 -[UP] flip: 2476, stem: 23610, fault:15476. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1562 -[UP] flip: 0, stem: 23990, fault:14906. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1511 -[UP] flip: 0, stem: 24870, fault:14906. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1511 -[UP] flip: 490, stem: 23672, fault:14526. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1501 -[UP] flip: 707, stem: 24613, fault:14469. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1498 -[UP] flip: 1860, stem: 25371, fault:14469. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1495 -[UP] flip: 1522, stem: 26791, fault:14450. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1491 -[UP] flip: 2424, stem: 28151, fault:14450. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1487 -[UP] flip: 0, stem: 27414, fault:14184. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1436 -[UP] flip: 1373, stem: 27933, fault:14203. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1436 -[UP] flip: 1115, stem: 22935, fault:10878. flip_cnt: 3, stem_cnt: 1413, fault_cnt:1131 -[UP] flip: 2324, stem: 22613, fault:11296. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1167 -[UP] flip: 1282, stem: 18951, fault:11467. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1189 -[UP] flip: 671, stem: 19652, fault:11543. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1193 -[UP] flip: 2082, stem: 20972, fault:11486. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1189 -[UP] flip: 0, stem: 22432, fault:11277. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1173 -[UP] flip: 0, stem: 17049, fault:14925. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1538 -[UP] flip: 0, stem: 18570, fault:14925. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1538 -[UP] flip: 2601, stem: 19870, fault:14925. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1539 -[UP] flip: 1370, stem: 17068, fault:14849. flip_cnt: 4, stem_cnt: 1420, fault_cnt:1547 -[UP] flip: 1675, stem: 18068, fault:14849. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1539 -[UP] flip: 2317, stem: 18888, fault:14716. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1522 -[UP] flip: 0, stem: 19567, fault:14716. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1522 -[UP] flip: 0, stem: 20449, fault:14545. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1512 -[UP] flip: 0, stem: 19611, fault:14298. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1493 -[UP] flip: 0, stem: 20072, fault:14469. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1501 -[UP] flip: 2579, stem: 21312, fault:14412. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1497 -[UP] flip: 0, stem: 22852, fault:14355. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1494 -[UP] flip: 1324, stem: 24153, fault:14355. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1492 -[UP] flip: 2163, stem: 25073, fault:14317. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1467 -[UP] flip: 1359, stem: 25713, fault:14336. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1465 -[UP] flip: 0, stem: 19754, fault:14317. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1442 -[UP] flip: 0, stem: 19793, fault:14279. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1444 -[UP] flip: 459, stem: 20912, fault:14260. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1443 -[UP] flip: 769, stem: 22473, fault:14279. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1427 -[UP] flip: 0, stem: 21911, fault:14260. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1425 -[UP] flip: 688, stem: 22472, fault:14184. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1420 -[UP] flip: 0, stem: 23812, fault:14184. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1420 -[UP] flip: 0, stem: 24232, fault:14431. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1437 -[UP] flip: 0, stem: 25192, fault:14431. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1437 -[UP] flip: 0, stem: 26552, fault:14431. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1437 -[UP] flip: 0, stem: 27029, fault:14526. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1449 -[UP] flip: 3029, stem: 26809, fault:14450. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1444 -[UP] flip: 701, stem: 28028, fault:14507. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1446 -[UP] flip: 1512, stem: 26547, fault:14982. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1490 -[UP] flip: 2600, stem: 23806, fault:14944. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1512 -[UP] flip: 2423, stem: 24806, fault:14963. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1510 -[UP] flip: 3527, stem: 24566, fault:15020. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1507 -[UP] flip: 0, stem: 25286, fault:15020. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1507 -[UP] flip: 1369, stem: 26445, fault:15077. flip_cnt: 4, stem_cnt: 1423, fault_cnt:1508 -[UP] flip: 1824, stem: 27125, fault:15001. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1502 -[UP] flip: 852, stem: 24126, fault:16350. flip_cnt: 3, stem_cnt: 1422, fault_cnt:1618 -[UP] flip: 1886, stem: 22108, fault:15799. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1592 -[UP] flip: 0, stem: 23428, fault:15894. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1603 -[UP] flip: 2616, stem: 23023, fault:16293. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1655 -[UP] flip: 0, stem: 23323, fault:16312. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1655 -[UP] flip: 0, stem: 24804, fault:16312. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1655 -[UP] flip: 735, stem: 22284, fault:16141. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1634 -[UP] flip: 0, stem: 23163, fault:16160. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1634 -[UP] flip: 3460, stem: 24263, fault:16160. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1630 -[UP] flip: 2652, stem: 24283, fault:16198. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1632 -[UP] flip: 468, stem: 24384, fault:16065. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1614 -[UP] flip: 2508, stem: 24862, fault:16198. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1622 -[UP] flip: 3588, stem: 25802, fault:16217. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1627 -[UP] flip: 2603, stem: 25722, fault:16065. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1617 -[UP] flip: 2520, stem: 26001, fault:15932. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1605 -[UP] flip: 2626, stem: 25521, fault:15704. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1593 -[UP] flip: 2706, stem: 25579, fault:16198. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1650 -[UP] flip: 582, stem: 24419, fault:16445. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1662 -[UP] flip: 2970, stem: 22757, fault:16464. flip_cnt: 6, stem_cnt: 1431, fault_cnt:1664 -[UP] flip: 1358, stem: 23317, fault:16464. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1662 -[UP] flip: 597, stem: 23937, fault:16426. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1660 -[UP] flip: 2073, stem: 24217, fault:16502. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1668 -[UP] flip: 2593, stem: 24916, fault:16445. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1668 -[UP] flip: 2516, stem: 25596, fault:16521. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1682 -[UP] flip: 2662, stem: 26816, fault:16483. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1679 -[UP] flip: 2498, stem: 27215, fault:16711. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1697 -[UP] flip: 1974, stem: 27975, fault:16692. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1695 -[UP] flip: 2807, stem: 24575, fault:16635. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1691 -[UP] flip: 1922, stem: 24635, fault:16540. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1683 -[UP] flip: 885, stem: 20638, fault:15951. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1602 -[UP] flip: 1740, stem: 21458, fault:15932. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1600 -[UP] flip: 1511, stem: 22317, fault:15457. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1562 -[UP] flip: 1137, stem: 22837, fault:15438. flip_cnt: 3, stem_cnt: 1431, fault_cnt:1568 -[UP] flip: 2492, stem: 22137, fault:15381. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1564 -[UP] flip: 1515, stem: 21718, fault:15419. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1568 -[UP] flip: 1014, stem: 22059, fault:15305. flip_cnt: 3, stem_cnt: 1429, fault_cnt:1541 -[UP] flip: 727, stem: 22520, fault:15305. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1540 -[UP] flip: 0, stem: 23381, fault:15305. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1540 -[UP] flip: 0, stem: 24542, fault:15305. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1540 -[UP] flip: 2811, stem: 25262, fault:15286. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1538 -[UP] flip: 0, stem: 26243, fault:15286. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1538 -[UP] flip: 1414, stem: 18766, fault:15628. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1561 -[UP] flip: 1732, stem: 19025, fault:15571. flip_cnt: 4, stem_cnt: 1423, fault_cnt:1558 -[UP] flip: 2024, stem: 20065, fault:15533. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1556 -[UP] flip: 1927, stem: 20743, fault:14944. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1517 -[UP] flip: 2428, stem: 20584, fault:14906. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1515 -[UP] flip: 2448, stem: 20666, fault:14659. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1495 -[UP] flip: 0, stem: 21847, fault:14602. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1468 -[UP] flip: 864, stem: 22548, fault:14545. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1465 -[UP] flip: 2742, stem: 24128, fault:14507. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1462 -[UP] flip: 3098, stem: 25268, fault:14450. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1458 -[UP] flip: 1279, stem: 23847, fault:14583. flip_cnt: 4, stem_cnt: 1421, fault_cnt:1476 -[UP] flip: 1791, stem: 24547, fault:14393. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1460 -[UP] flip: 594, stem: 23949, fault:14298. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1427 -[UP] flip: 1429, stem: 25269, fault:14279. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1425 -[UP] flip: 580, stem: 25550, fault:14260. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1415 -[UP] flip: 567, stem: 26191, fault:14241. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1414 -[UP] flip: 1970, stem: 22450, fault:13633. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1387 -[UP] flip: 1935, stem: 22751, fault:13557. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1382 -[UP] flip: 0, stem: 24112, fault:13538. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1380 -[UP] flip: 972, stem: 24872, fault:13519. flip_cnt: 3, stem_cnt: 1416, fault_cnt:1379 -[UP] flip: 893, stem: 20633, fault:12588. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1292 -[UP] flip: 1700, stem: 21673, fault:12588. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1290 -[UP] flip: 0, stem: 23034, fault:12626. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1292 -[UP] flip: 0, stem: 24154, fault:12626. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1292 -[UP] flip: 1636, stem: 25054, fault:12626. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1291 -[UP] flip: 800, stem: 26195, fault:12569. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1288 -[UP] flip: 849, stem: 18873, fault:13272. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1332 -[UP] flip: 0, stem: 20232, fault:13272. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1332 -[UP] flip: 2319, stem: 21212, fault:13234. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1328 -[UP] flip: 2394, stem: 22432, fault:13044. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1307 -[UP] flip: 759, stem: 22791, fault:12987. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1305 -[UP] flip: 0, stem: 22112, fault:13063. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1323 -[UP] flip: 0, stem: 23473, fault:13063. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1323 -[UP] flip: 0, stem: 22009, fault:13139. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1331 -[UP] flip: 2799, stem: 22749, fault:13139. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1328 -[UP] flip: 0, stem: 23869, fault:12246. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1224 -[UP] flip: 1503, stem: 24709, fault:12208. flip_cnt: 4, stem_cnt: 1419, fault_cnt:1222 -[UP] flip: 600, stem: 23650, fault:12379. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1235 -[UP] flip: 3047, stem: 19929, fault:12227. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1208 -[UP] flip: 1101, stem: 20949, fault:12208. flip_cnt: 3, stem_cnt: 1419, fault_cnt:1207 -[UP] flip: 1645, stem: 21949, fault:12208. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1206 -[UP] flip: 0, stem: 22529, fault:12208. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1206 -[UP] flip: 0, stem: 23030, fault:12151. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1203 -[UP] flip: 0, stem: 23490, fault:12151. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1203 -[UP] flip: 3589, stem: 21730, fault:9776. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1004 -[UP] flip: 1807, stem: 19665, fault:12626. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1284 -[UP] flip: 1672, stem: 22163, fault:12721. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1304 -[UP] flip: 3559, stem: 22103, fault:14564. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1477 -[UP] flip: 3565, stem: 22104, fault:14545. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1474 -[UP] flip: 2006, stem: 22722, fault:14564. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1476 -[UP] flip: 2004, stem: 23482, fault:14564. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1480 -[UP] flip: 652, stem: 22902, fault:14545. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1477 -[UP] flip: 0, stem: 21480, fault:14773. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1499 -[UP] flip: 1686, stem: 22300, fault:14735. flip_cnt: 4, stem_cnt: 1428, fault_cnt:1497 -[UP] flip: 1376, stem: 21900, fault:14811. flip_cnt: 4, stem_cnt: 1428, fault_cnt:1503 -[UP] flip: 2661, stem: 22040, fault:14830. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1505 -[UP] flip: 702, stem: 21221, fault:14811. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1498 -[UP] flip: 0, stem: 21742, fault:14811. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1495 -[UP] flip: 2852, stem: 22582, fault:14773. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1492 -[UP] flip: 0, stem: 23183, fault:14602. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1457 -[UP] flip: 1785, stem: 22764, fault:14583. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1461 -[UP] flip: 2880, stem: 23404, fault:13614. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1365 -[UP] flip: 410, stem: 24103, fault:13652. flip_cnt: 1, stem_cnt: 1425, fault_cnt:1367 -[UP] flip: 1784, stem: 24802, fault:13633. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1366 -[UP] flip: 1849, stem: 25502, fault:13576. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1358 -[UP] flip: 2868, stem: 25701, fault:13462. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1329 -[UP] flip: 747, stem: 26461, fault:13462. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1326 -[UP] flip: 747, stem: 26141, fault:13462. flip_cnt: 3, stem_cnt: 1427, fault_cnt:1325 -[UP] flip: 0, stem: 18346, fault:13747. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1398 -[UP] flip: 1532, stem: 20686, fault:13728. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1396 -[UP] flip: 0, stem: 22146, fault:13481. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1361 -[UP] flip: 3779, stem: 22746, fault:13424. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1357 -[UP] flip: 3907, stem: 21088, fault:13310. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1350 -[UP] flip: 2083, stem: 20488, fault:13500. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1372 -[UP] flip: 800, stem: 21547, fault:13519. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1373 -[UP] flip: 2914, stem: 22687, fault:14146. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1476 -[UP] flip: 1734, stem: 23008, fault:14089. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1468 -[UP] flip: 1476, stem: 24349, fault:14089. flip_cnt: 4, stem_cnt: 1419, fault_cnt:1466 -[UP] flip: 2896, stem: 24649, fault:14070. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1461 -[UP] flip: 1477, stem: 20431, fault:13956. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1468 -[UP] flip: 3312, stem: 21391, fault:13823. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1458 -[UP] flip: 834, stem: 21874, fault:13823. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1456 -[UP] flip: 2713, stem: 21974, fault:13842. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1471 -[UP] flip: 3866, stem: 23134, fault:13842. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1467 -[UP] flip: 3923, stem: 21893, fault:14032. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1475 -[UP] flip: 0, stem: 23293, fault:14032. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1475 -[UP] flip: 2516, stem: 23652, fault:14241. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1490 -[UP] flip: 1767, stem: 22770, fault:13823. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1442 -[UP] flip: 0, stem: 23591, fault:13880. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1446 -[UP] flip: 2180, stem: 21571, fault:13709. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1439 -[UP] flip: 0, stem: 22991, fault:13671. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1433 -[UP] flip: 2058, stem: 23872, fault:13671. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1429 -[UP] flip: 1650, stem: 24430, fault:13690. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1431 -[UP] flip: 1935, stem: 24288, fault:13747. flip_cnt: 4, stem_cnt: 1420, fault_cnt:1433 -[UP] flip: 3075, stem: 25088, fault:13785. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1437 -[UP] flip: 673, stem: 24987, fault:13937. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1463 -[UP] flip: 723, stem: 25127, fault:13918. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1460 -[UP] flip: 416, stem: 25327, fault:13937. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1463 -[UP] flip: 1853, stem: 20986, fault:11847. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1251 -[UP] flip: 1748, stem: 21505, fault:11809. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1252 -[UP] flip: 0, stem: 22144, fault:11999. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1269 -[UP] flip: 2918, stem: 22201, fault:12189. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1284 -[UP] flip: 771, stem: 22760, fault:12132. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1281 -[UP] flip: 2328, stem: 22701, fault:12018. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1274 -[UP] flip: 3428, stem: 23461, fault:11999. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1273 -[UP] flip: 1992, stem: 24461, fault:12683. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1336 -[UP] flip: 0, stem: 25621, fault:12683. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1332 -[UP] flip: 731, stem: 24999, fault:15457. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1610 -[UP] flip: 1729, stem: 25439, fault:15419. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1608 -[UP] flip: 3846, stem: 26439, fault:15362. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1603 -[UP] flip: 725, stem: 26180, fault:15305. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1594 -[UP] flip: 1361, stem: 25761, fault:15286. flip_cnt: 4, stem_cnt: 1427, fault_cnt:1589 -[UP] flip: 3519, stem: 25380, fault:15286. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1603 -[UP] flip: 0, stem: 24742, fault:14735. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1483 -[UP] flip: 1814, stem: 25242, fault:14735. flip_cnt: 4, stem_cnt: 1426, fault_cnt:1481 -[UP] flip: 0, stem: 26522, fault:14849. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1489 -[UP] flip: 2312, stem: 17764, fault:14374. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1463 -[UP] flip: 719, stem: 17723, fault:14374. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1462 -[UP] flip: 2477, stem: 18703, fault:14336. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1459 -[UP] flip: 3120, stem: 17581, fault:13766. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1416 -[UP] flip: 566, stem: 19342, fault:13975. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1431 -[UP] flip: 618, stem: 18224, fault:13899. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1425 -[UP] flip: 2147, stem: 19384, fault:13861. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1422 -[UP] flip: 0, stem: 20984, fault:13861. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1422 -[UP] flip: 3181, stem: 22244, fault:13823. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1419 -[UP] flip: 554, stem: 23023, fault:13842. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1420 -[UP] flip: 2225, stem: 25863, fault:13823. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1418 -[UP] flip: 2197, stem: 25504, fault:13994. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1436 -[UP] flip: 839, stem: 25105, fault:13861. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1425 -[UP] flip: 2162, stem: 26325, fault:13842. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1423 -[UP] flip: 641, stem: 27185, fault:13823. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1422 -[UP] flip: 838, stem: 27786, fault:13804. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1419 -[UP] flip: 3441, stem: 31846, fault:13804. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1415 -[UP] flip: 2585, stem: 29347, fault:13671. flip_cnt: 7, stem_cnt: 1421, fault_cnt:1394 -[UP] flip: 0, stem: 26569, fault:11448. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1166 -[UP] flip: 1105, stem: 27749, fault:11429. flip_cnt: 4, stem_cnt: 1419, fault_cnt:1164 -[UP] flip: 0, stem: 28849, fault:11486. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1170 -[UP] flip: 0, stem: 29609, fault:11486. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1170 -[UP] flip: 0, stem: 30090, fault:11790. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1195 -[UP] flip: 0, stem: 30150, fault:11828. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1200 -[UP] flip: 806, stem: 31410, fault:11828. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1199 -[UP] flip: 687, stem: 32031, fault:11809. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1196 -[UP] flip: 800, stem: 33031, fault:11809. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1195 -[UP] flip: 561, stem: 33532, fault:11752. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1190 -[UP] flip: 2948, stem: 28794, fault:11505. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1174 -[UP] flip: 898, stem: 22149, fault:8864. flip_cnt: 2, stem_cnt: 1419, fault_cnt:954 -[UP] flip: 2119, stem: 22869, fault:8845. flip_cnt: 5, stem_cnt: 1419, fault_cnt:952 -[UP] flip: 1641, stem: 24029, fault:8807. flip_cnt: 5, stem_cnt: 1419, fault_cnt:949 -[UP] flip: 0, stem: 25129, fault:8807. flip_cnt: 0, stem_cnt: 1419, fault_cnt:947 -[UP] flip: 1765, stem: 26209, fault:8826. flip_cnt: 5, stem_cnt: 1419, fault_cnt:949 -[UP] flip: 0, stem: 27390, fault:12436. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1226 -[UP] flip: 0, stem: 26027, fault:12189. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1212 -[UP] flip: 976, stem: 26766, fault:12322. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1220 -[UP] flip: 3566, stem: 27506, fault:13196. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1355 -[UP] flip: 3221, stem: 27826, fault:13386. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1366 -[UP] flip: 837, stem: 24310, fault:13652. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1387 -[UP] flip: 1886, stem: 25111, fault:13614. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1385 -[UP] flip: 0, stem: 24850, fault:13785. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1411 -[UP] flip: 0, stem: 24930, fault:13785. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1411 -[UP] flip: 844, stem: 21970, fault:13842. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1401 -[UP] flip: 3330, stem: 23210, fault:13823. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1399 -[UP] flip: 3370, stem: 22725, fault:14108. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1418 -[UP] flip: 2990, stem: 23506, fault:15039. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1563 -[UP] flip: 2353, stem: 24366, fault:15001. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1560 -[UP] flip: 949, stem: 25406, fault:15001. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1557 -[UP] flip: 2690, stem: 25045, fault:15001. flip_cnt: 7, stem_cnt: 1423, fault_cnt:1553 -[UP] flip: 886, stem: 25686, fault:14849. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1544 -[UP] flip: 1576, stem: 26626, fault:14830. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1542 -[UP] flip: 4387, stem: 27266, fault:14773. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1538 -[UP] flip: 3272, stem: 28446, fault:14773. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1535 -[UP] flip: 1600, stem: 27486, fault:14659. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1527 -[UP] flip: 1807, stem: 26783, fault:14697. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1536 -[UP] flip: 751, stem: 26224, fault:14868. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1563 -[UP] flip: 888, stem: 26483, fault:14830. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1560 -[UP] flip: 1711, stem: 27503, fault:14830. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1556 -[UP] flip: 0, stem: 30503, fault:14621. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1531 -[UP] flip: 2500, stem: 26744, fault:14678. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1534 -[UP] flip: 2046, stem: 26182, fault:13766. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1404 -[UP] flip: 3051, stem: 27182, fault:13690. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1398 -[UP] flip: 3246, stem: 22881, fault:13652. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1397 -[UP] flip: 3690, stem: 22761, fault:13595. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1393 -[UP] flip: 3123, stem: 20362, fault:13424. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1379 -[UP] flip: 793, stem: 21403, fault:13405. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1378 -[UP] flip: 0, stem: 21801, fault:13405. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1375 -[UP] flip: 0, stem: 21641, fault:13519. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1378 -[UP] flip: 1064, stem: 22221, fault:13519. flip_cnt: 3, stem_cnt: 1427, fault_cnt:1375 -[UP] flip: 1030, stem: 22301, fault:13633. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1398 -[UP] flip: 695, stem: 23481, fault:13614. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1397 -[UP] flip: 2695, stem: 23741, fault:13557. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1393 -[UP] flip: 2309, stem: 24761, fault:13538. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1384 -[UP] flip: 1599, stem: 22100, fault:14450. flip_cnt: 4, stem_cnt: 1428, fault_cnt:1567 -[UP] flip: 1834, stem: 22599, fault:14412. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1566 -[UP] flip: 2809, stem: 23379, fault:14431. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1566 -[UP] flip: 0, stem: 24199, fault:14431. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1566 -[UP] flip: 3194, stem: 21659, fault:13994. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1517 -[UP] flip: 0, stem: 22738, fault:14013. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1517 -[UP] flip: 0, stem: 23518, fault:14013. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1517 -[UP] flip: 1965, stem: 24319, fault:13994. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1515 -[UP] flip: 673, stem: 24859, fault:13956. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1513 -[UP] flip: 3318, stem: 27439, fault:13918. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1509 -[UP] flip: 3431, stem: 28160, fault:13861. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1505 -[UP] flip: 3577, stem: 28960, fault:13709. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1495 -[UP] flip: 2431, stem: 29518, fault:13709. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1497 -[UP] flip: 758, stem: 29721, fault:13747. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1509 -[UP] flip: 777, stem: 28641, fault:13747. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1509 -[UP] flip: 1257, stem: 25443, fault:13861. flip_cnt: 3, stem_cnt: 1425, fault_cnt:1503 -[UP] flip: 3729, stem: 26763, fault:13804. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1499 -[UP] flip: 740, stem: 26302, fault:13709. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1490 -[UP] flip: 2504, stem: 23322, fault:13823. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1501 -[UP] flip: 1456, stem: 23402, fault:14089. flip_cnt: 3, stem_cnt: 1426, fault_cnt:1521 -[UP] flip: 0, stem: 23323, fault:14032. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1516 -[UP] flip: 848, stem: 24143, fault:14089. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1519 -[UP] flip: 1814, stem: 23362, fault:14811. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1579 -[UP] flip: 0, stem: 24202, fault:14811. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1575 -[UP] flip: 2454, stem: 24782, fault:14792. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1573 -[UP] flip: 725, stem: 26023, fault:14735. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1570 -[UP] flip: 0, stem: 25903, fault:14735. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1570 -[UP] flip: 0, stem: 27784, fault:14735. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1570 -[UP] flip: 800, stem: 24284, fault:15324. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1653 -[UP] flip: 3652, stem: 22282, fault:15400. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1649 -[UP] flip: 2405, stem: 21921, fault:15381. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1645 -[UP] flip: 1598, stem: 22739, fault:15267. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1627 -[UP] flip: 0, stem: 23679, fault:15248. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1625 -[UP] flip: 3916, stem: 23539, fault:15248. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1626 -[UP] flip: 3574, stem: 24439, fault:15609. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1662 -[UP] flip: 0, stem: 25278, fault:15571. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1660 -[UP] flip: 1167, stem: 26077, fault:15533. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1659 -[UP] flip: 950, stem: 27117, fault:15628. flip_cnt: 3, stem_cnt: 1431, fault_cnt:1667 -[UP] flip: 1277, stem: 24716, fault:15514. flip_cnt: 3, stem_cnt: 1432, fault_cnt:1652 -[UP] flip: 756, stem: 26156, fault:15286. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1633 -[UP] flip: 0, stem: 26756, fault:15267. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1631 -[UP] flip: 0, stem: 27776, fault:15267. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1631 -[UP] flip: 3604, stem: 28456, fault:15229. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1629 -[UP] flip: 1779, stem: 28656, fault:15191. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1627 -[UP] flip: 0, stem: 27334, fault:15837. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1695 -[UP] flip: 733, stem: 28194, fault:15837. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1692 -[UP] flip: 2058, stem: 28874, fault:15837. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1690 -[UP] flip: 1950, stem: 29554, fault:15799. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1687 -[UP] flip: 2612, stem: 29874, fault:15780. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1684 -[UP] flip: 728, stem: 29596, fault:15761. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1683 -[UP] flip: 2471, stem: 30054, fault:15780. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1685 -[UP] flip: 931, stem: 25853, fault:15894. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1701 -[UP] flip: 743, stem: 26213, fault:15894. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1698 -[UP] flip: 0, stem: 26693, fault:15894. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1696 -[UP] flip: 3306, stem: 27573, fault:15875. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1694 -[UP] flip: 936, stem: 28393, fault:15818. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1691 -[UP] flip: 3264, stem: 30033, fault:15799. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1688 -[UP] flip: 3443, stem: 30613, fault:15476. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1649 -[UP] flip: 2084, stem: 30933, fault:15419. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1646 -[UP] flip: 1454, stem: 31733, fault:15400. flip_cnt: 3, stem_cnt: 1435, fault_cnt:1643 -[UP] flip: 0, stem: 32393, fault:15400. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1643 -[UP] flip: 1625, stem: 30111, fault:15400. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1642 -[UP] flip: 1408, stem: 30731, fault:15818. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1677 -[UP] flip: 2445, stem: 30912, fault:15932. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1686 -[UP] flip: 927, stem: 29795, fault:15457. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1647 -[UP] flip: 2066, stem: 30434, fault:15438. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1646 -[UP] flip: 0, stem: 31074, fault:15438. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1646 -[UP] flip: 2498, stem: 27556, fault:15400. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1637 -[UP] flip: 0, stem: 27774, fault:15400. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1637 -[UP] flip: 4127, stem: 26469, fault:15400. flip_cnt: 6, stem_cnt: 1439, fault_cnt:1638 -[UP] flip: 2666, stem: 26489, fault:15438. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1649 -[UP] flip: 0, stem: 27108, fault:15343. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1639 -[UP] flip: 850, stem: 27052, fault:15267. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1632 -[UP] flip: 0, stem: 28132, fault:15267. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1632 -[UP] flip: 1184, stem: 21491, fault:15799. flip_cnt: 3, stem_cnt: 1437, fault_cnt:1698 -[UP] flip: 0, stem: 22791, fault:15856. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1709 -[UP] flip: 2789, stem: 23691, fault:15799. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1705 -[UP] flip: 3378, stem: 24251, fault:15761. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1703 -[UP] flip: 0, stem: 18289, fault:16217. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1747 -[UP] flip: 3077, stem: 16487, fault:16217. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1750 -[UP] flip: 1473, stem: 17147, fault:16369. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1761 -[UP] flip: 4451, stem: 18407, fault:16312. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1757 -[UP] flip: 1276, stem: 19027, fault:16141. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1745 -[UP] flip: 1972, stem: 18828, fault:16084. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1740 -[UP] flip: 2185, stem: 17684, fault:17642. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1844 -[UP] flip: 1301, stem: 18284, fault:17623. flip_cnt: 3, stem_cnt: 1444, fault_cnt:1837 -[UP] flip: 896, stem: 18965, fault:17623. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1836 -[UP] flip: 0, stem: 19365, fault:17623. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1836 -[UP] flip: 835, stem: 19964, fault:17642. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1839 -[UP] flip: 1687, stem: 20524, fault:18022. flip_cnt: 4, stem_cnt: 1444, fault_cnt:1872 -[UP] flip: 2209, stem: 20642, fault:18136. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1885 -[UP] flip: 3310, stem: 18821, fault:18193. flip_cnt: 7, stem_cnt: 1447, fault_cnt:1883 -[UP] flip: 0, stem: 19581, fault:18193. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1883 -[UP] flip: 797, stem: 20000, fault:18212. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1884 -[UP] flip: 1988, stem: 20820, fault:18820. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1942 -[UP] flip: 2528, stem: 19578, fault:18706. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1934 -[UP] flip: 0, stem: 19119, fault:18573. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1926 -[UP] flip: 4241, stem: 19819, fault:18516. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1922 -[UP] flip: 3057, stem: 20199, fault:18459. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1918 -[UP] flip: 2965, stem: 20859, fault:18402. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1914 -[UP] flip: 743, stem: 21559, fault:18345. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1911 -[UP] flip: 3029, stem: 22520, fault:18269. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1905 -[UP] flip: 883, stem: 22541, fault:18250. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1902 -[UP] flip: 0, stem: 21581, fault:18250. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1902 -[UP] flip: 2809, stem: 22041, fault:18231. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1900 -[UP] flip: 2039, stem: 21000, fault:17889. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1864 -[UP] flip: 1709, stem: 21840, fault:17851. flip_cnt: 4, stem_cnt: 1448, fault_cnt:1856 -[UP] flip: 905, stem: 20183, fault:17870. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1863 -[UP] flip: 1241, stem: 20521, fault:17889. flip_cnt: 3, stem_cnt: 1447, fault_cnt:1864 -[UP] flip: 2004, stem: 21561, fault:17927. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1862 -[UP] flip: 2217, stem: 21661, fault:17908. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1858 -[UP] flip: 0, stem: 14282, fault:17319. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1819 -[UP] flip: 1827, stem: 15461, fault:17680. flip_cnt: 4, stem_cnt: 1447, fault_cnt:1852 -[UP] flip: 3270, stem: 15861, fault:17661. flip_cnt: 7, stem_cnt: 1447, fault_cnt:1851 -[UP] flip: 3253, stem: 14522, fault:17585. flip_cnt: 7, stem_cnt: 1446, fault_cnt:1844 -[UP] flip: 1185, stem: 15583, fault:17490. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1839 -[UP] flip: 0, stem: 17502, fault:17490. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1839 -[UP] flip: 1227, stem: 18102, fault:17490. flip_cnt: 3, stem_cnt: 1446, fault_cnt:1838 -[UP] flip: 3200, stem: 16960, fault:17566. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1855 -[UP] flip: 2556, stem: 17500, fault:17642. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1865 -[UP] flip: 0, stem: 14459, fault:18212. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1908 -[UP] flip: 965, stem: 12279, fault:18193. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1907 -[UP] flip: 4486, stem: 12499, fault:18193. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1903 -[UP] flip: 2403, stem: 12457, fault:18212. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1905 -[UP] flip: 2418, stem: 12877, fault:18250. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1906 -[UP] flip: 2151, stem: 13517, fault:18155. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1899 -[UP] flip: 2466, stem: 14217, fault:18136. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1897 -[UP] flip: 1507, stem: 15497, fault:18212. flip_cnt: 3, stem_cnt: 1451, fault_cnt:1900 -[UP] flip: 2460, stem: 16377, fault:18155. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1897 -[UP] flip: 3612, stem: 16877, fault:18117. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1892 -[UP] flip: 3616, stem: 16017, fault:18060. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1888 -[UP] flip: 1699, stem: 16437, fault:17984. flip_cnt: 4, stem_cnt: 1451, fault_cnt:1884 -[UP] flip: 1476, stem: 17678, fault:18003. flip_cnt: 4, stem_cnt: 1450, fault_cnt:1891 -[UP] flip: 857, stem: 18438, fault:17984. flip_cnt: 2, stem_cnt: 1450, fault_cnt:1887 -[UP] flip: 1257, stem: 19219, fault:17889. flip_cnt: 4, stem_cnt: 1449, fault_cnt:1879 -[UP] flip: 1328, stem: 20579, fault:17832. flip_cnt: 3, stem_cnt: 1449, fault_cnt:1876 -[UP] flip: 1472, stem: 20819, fault:17775. flip_cnt: 3, stem_cnt: 1449, fault_cnt:1873 -[UP] flip: 0, stem: 20601, fault:17775. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1873 -[UP] flip: 3673, stem: 20581, fault:17775. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1871 -[UP] flip: 1458, stem: 20601, fault:17737. flip_cnt: 4, stem_cnt: 1447, fault_cnt:1869 -[UP] flip: 2240, stem: 21601, fault:17737. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1871 -[UP] flip: 0, stem: 20242, fault:17680. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1866 -[UP] flip: 0, stem: 21842, fault:17680. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1866 -[UP] flip: 1820, stem: 20902, fault:17680. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1863 -[UP] flip: 0, stem: 20965, fault:17642. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1858 -[UP] flip: 1805, stem: 21446, fault:17661. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1858 -[UP] flip: 893, stem: 22826, fault:17661. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1852 -[UP] flip: 1769, stem: 23086, fault:17604. flip_cnt: 3, stem_cnt: 1442, fault_cnt:1849 -[UP] flip: 3870, stem: 16126, fault:17870. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1868 -[UP] flip: 4565, stem: 16726, fault:17604. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1850 -[UP] flip: 4515, stem: 17626, fault:17566. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1846 -[UP] flip: 858, stem: 14366, fault:17775. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1866 -[UP] flip: 3181, stem: 15145, fault:17699. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1862 -[UP] flip: 1769, stem: 16106, fault:17661. flip_cnt: 4, stem_cnt: 1442, fault_cnt:1858 -[UP] flip: 2379, stem: 17086, fault:17623. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1855 -[UP] flip: 1820, stem: 17524, fault:17661. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1858 -[UP] flip: 0, stem: 18164, fault:17661. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1869 -[UP] flip: 3432, stem: 18322, fault:17699. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1871 -[UP] flip: 960, stem: 18121, fault:17984. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1902 -[UP] flip: 1885, stem: 19020, fault:18174. flip_cnt: 4, stem_cnt: 1448, fault_cnt:1926 -[UP] flip: 1107, stem: 17642, fault:18212. flip_cnt: 3, stem_cnt: 1446, fault_cnt:1919 -[UP] flip: 1025, stem: 17923, fault:18193. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1916 -[UP] flip: 3175, stem: 17141, fault:17794. flip_cnt: 4, stem_cnt: 1447, fault_cnt:1876 -[UP] flip: 3759, stem: 14922, fault:18117. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1908 -[UP] flip: 2471, stem: 15182, fault:17832. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1886 -[UP] flip: 2702, stem: 15281, fault:17756. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1880 -[UP] flip: 1871, stem: 16062, fault:17604. flip_cnt: 4, stem_cnt: 1446, fault_cnt:1868 -[UP] flip: 1820, stem: 16681, fault:17661. flip_cnt: 4, stem_cnt: 1447, fault_cnt:1866 -[UP] flip: 4876, stem: 16961, fault:17680. flip_cnt: 7, stem_cnt: 1447, fault_cnt:1867 -[UP] flip: 0, stem: 16265, fault:17642. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1859 -[UP] flip: 1014, stem: 17585, fault:17642. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1856 -[UP] flip: 1993, stem: 18245, fault:17585. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1853 -[UP] flip: 0, stem: 17403, fault:17566. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1851 -[UP] flip: 3660, stem: 18603, fault:17547. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1849 -[UP] flip: 4551, stem: 18763, fault:17490. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1845 -[UP] flip: 3456, stem: 19723, fault:17490. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1841 -[UP] flip: 3858, stem: 20143, fault:17471. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1836 -[UP] flip: 1859, stem: 20383, fault:17433. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1830 -[UP] flip: 2700, stem: 20743, fault:17414. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1828 -[UP] flip: 2481, stem: 21183, fault:17338. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1820 -[UP] flip: 2091, stem: 21504, fault:17376. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1823 -[UP] flip: 1486, stem: 21963, fault:17604. flip_cnt: 3, stem_cnt: 1445, fault_cnt:1838 -[UP] flip: 3797, stem: 22183, fault:17547. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1834 -[UP] flip: 2491, stem: 22643, fault:17490. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1830 -[UP] flip: 3487, stem: 23263, fault:17376. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1822 -[UP] flip: 1913, stem: 22725, fault:17357. flip_cnt: 4, stem_cnt: 1443, fault_cnt:1819 -[UP] flip: 1013, stem: 23066, fault:17300. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1815 -[UP] flip: 2197, stem: 23786, fault:17262. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1811 -[UP] flip: 3728, stem: 23486, fault:16502. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1753 -[UP] flip: 4922, stem: 24706, fault:16179. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1723 -[UP] flip: 1070, stem: 25247, fault:16122. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1720 -[UP] flip: 0, stem: 25527, fault:16122. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1720 -[UP] flip: 0, stem: 19808, fault:16806. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1745 -[UP] flip: 930, stem: 20348, fault:16749. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1742 -[UP] flip: 3276, stem: 21208, fault:16749. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1743 -[UP] flip: 3353, stem: 21848, fault:17186. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1818 -[UP] flip: 811, stem: 22209, fault:17129. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1814 -[UP] flip: 1924, stem: 21649, fault:17091. flip_cnt: 4, stem_cnt: 1439, fault_cnt:1812 -[UP] flip: 4938, stem: 22369, fault:17148. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1816 -[UP] flip: 681, stem: 22548, fault:17129. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1815 -[UP] flip: 3554, stem: 22647, fault:17072. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1811 -[UP] flip: 3676, stem: 23827, fault:16806. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1776 -[UP] flip: 0, stem: 24227, fault:16806. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1776 -[UP] flip: 1163, stem: 24328, fault:16749. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1773 -[UP] flip: 3405, stem: 25108, fault:16692. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1769 -[UP] flip: 881, stem: 19771, fault:16274. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1724 -[UP] flip: 1332, stem: 20331, fault:16179. flip_cnt: 3, stem_cnt: 1437, fault_cnt:1717 -[UP] flip: 2105, stem: 20710, fault:16388. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1732 -[UP] flip: 1101, stem: 22711, fault:16369. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1723 -[UP] flip: 1810, stem: 22469, fault:16407. flip_cnt: 4, stem_cnt: 1439, fault_cnt:1721 -[UP] flip: 3951, stem: 21168, fault:16445. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1722 -[UP] flip: 2440, stem: 18967, fault:16236. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1705 -[UP] flip: 2025, stem: 19987, fault:16445. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1718 -[UP] flip: 0, stem: 16407, fault:16388. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1709 -[UP] flip: 2944, stem: 17247, fault:16331. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1705 -[UP] flip: 692, stem: 18228, fault:16331. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1702 -[UP] flip: 959, stem: 17369, fault:16274. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1699 -[UP] flip: 2181, stem: 18009, fault:16217. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1695 -[UP] flip: 2733, stem: 16150, fault:16711. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1755 -[UP] flip: 2758, stem: 16207, fault:16749. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1755 -[UP] flip: 2630, stem: 16907, fault:16882. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1769 -[UP] flip: 971, stem: 17807, fault:16844. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1766 -[UP] flip: 3519, stem: 18627, fault:16844. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1763 -[UP] flip: 0, stem: 19847, fault:16844. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1763 -[UP] flip: 4262, stem: 20344, fault:16787. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1759 -[UP] flip: 3006, stem: 20524, fault:17015. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1779 -[UP] flip: 2610, stem: 19084, fault:17053. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1775 -[UP] flip: 4952, stem: 19644, fault:17072. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1779 -[UP] flip: 2632, stem: 18102, fault:17053. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1779 -[UP] flip: 1741, stem: 19042, fault:17148. flip_cnt: 3, stem_cnt: 1446, fault_cnt:1786 -[UP] flip: 2569, stem: 18922, fault:17129. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1784 -[UP] flip: 990, stem: 19043, fault:17205. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1799 -[UP] flip: 2551, stem: 19283, fault:17148. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1795 -[UP] flip: 1020, stem: 19624, fault:17129. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1792 -[UP] flip: 0, stem: 20804, fault:17129. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1792 -[UP] flip: 3550, stem: 21384, fault:17072. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1789 -[UP] flip: 3686, stem: 21704, fault:16844. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1766 -[UP] flip: 1969, stem: 22324, fault:16844. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1763 -[UP] flip: 3614, stem: 20925, fault:16787. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1755 -[UP] flip: 2639, stem: 20565, fault:16749. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1750 -[UP] flip: 1278, stem: 21386, fault:16540. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1712 -[UP] flip: 3535, stem: 22226, fault:16483. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1708 -[UP] flip: 1788, stem: 20646, fault:16559. flip_cnt: 4, stem_cnt: 1442, fault_cnt:1701 -[UP] flip: 2788, stem: 19905, fault:16939. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1744 -[UP] flip: 3801, stem: 20806, fault:16844. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1738 -[UP] flip: 1031, stem: 22006, fault:16825. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1735 -[UP] flip: 0, stem: 22604, fault:16806. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1735 -[UP] flip: 3792, stem: 23644, fault:16806. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1736 -[UP] flip: 1880, stem: 22864, fault:17015. flip_cnt: 4, stem_cnt: 1444, fault_cnt:1751 -[UP] flip: 2140, stem: 20505, fault:17110. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1770 -[UP] flip: 4966, stem: 20965, fault:17053. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1764 -[UP] flip: 3949, stem: 20603, fault:17148. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1781 -[UP] flip: 2072, stem: 21523, fault:17224. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1796 -[UP] flip: 4184, stem: 21323, fault:17205. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1793 -[UP] flip: 886, stem: 21404, fault:17148. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1790 -[UP] flip: 3964, stem: 21305, fault:17053. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1784 -[UP] flip: 0, stem: 22786, fault:17053. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1784 -[UP] flip: 1323, stem: 23726, fault:16996. flip_cnt: 3, stem_cnt: 1442, fault_cnt:1781 -[UP] flip: 3133, stem: 20048, fault:16787. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1763 -[UP] flip: 1408, stem: 20788, fault:16749. flip_cnt: 3, stem_cnt: 1440, fault_cnt:1758 -[UP] flip: 1611, stem: 21948, fault:16730. flip_cnt: 3, stem_cnt: 1440, fault_cnt:1757 -[UP] flip: 1229, stem: 24088, fault:16692. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1754 -[UP] flip: 3034, stem: 22205, fault:16787. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1755 -[UP] flip: 3372, stem: 23005, fault:16730. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1748 -[UP] flip: 3256, stem: 24425, fault:16730. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1744 -[UP] flip: 568, stem: 24926, fault:16673. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1739 -[UP] flip: 3781, stem: 21546, fault:16635. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1734 -[UP] flip: 0, stem: 20527, fault:16426. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1724 -[UP] flip: 3015, stem: 21227, fault:16388. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1721 -[UP] flip: 2057, stem: 21506, fault:15647. flip_cnt: 4, stem_cnt: 1442, fault_cnt:1616 -[UP] flip: 0, stem: 20107, fault:15799. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1627 -[UP] flip: 1006, stem: 18888, fault:15780. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1625 -[UP] flip: 4087, stem: 18988, fault:15723. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1621 -[UP] flip: 3716, stem: 18168, fault:15685. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1618 -[UP] flip: 0, stem: 20909, fault:14564. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1529 -[UP] flip: 0, stem: 21269, fault:14564. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1529 -[UP] flip: 1840, stem: 22972, fault:14564. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1524 -[UP] flip: 5197, stem: 23329, fault:15913. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1643 -[UP] flip: 0, stem: 23153, fault:15742. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1624 -[UP] flip: 4038, stem: 22411, fault:15723. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1622 -[UP] flip: 3739, stem: 22871, fault:15666. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1618 -[UP] flip: 2792, stem: 22751, fault:15609. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1614 -[UP] flip: 603, stem: 24333, fault:15609. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1612 -[UP] flip: 0, stem: 25433, fault:15609. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1612 -[UP] flip: 5252, stem: 25593, fault:15552. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1608 -[UP] flip: 1772, stem: 25834, fault:15552. flip_cnt: 4, stem_cnt: 1434, fault_cnt:1606 -[UP] flip: 883, stem: 26655, fault:15533. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1600 -[UP] flip: 4945, stem: 23856, fault:15476. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1598 -[UP] flip: 0, stem: 24296, fault:15476. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1598 -[UP] flip: 2048, stem: 23559, fault:15476. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1596 -[UP] flip: 2416, stem: 24279, fault:15476. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1590 -[UP] flip: 0, stem: 25559, fault:15381. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1584 -[UP] flip: 0, stem: 27460, fault:15381. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1584 -[UP] flip: 987, stem: 26820, fault:15362. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1583 -[UP] flip: 3301, stem: 27760, fault:15305. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1579 -[UP] flip: 3299, stem: 28600, fault:15267. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1575 -[UP] flip: 1182, stem: 29101, fault:14716. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1525 -[UP] flip: 3519, stem: 28202, fault:14716. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1524 -[UP] flip: 2493, stem: 24021, fault:14051. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1458 -[UP] flip: 1005, stem: 24902, fault:13880. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1443 -[UP] flip: 4395, stem: 25382, fault:13861. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1441 -[UP] flip: 3488, stem: 25480, fault:13861. flip_cnt: 4, stem_cnt: 1428, fault_cnt:1444 -[UP] flip: 1967, stem: 25440, fault:14336. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1498 -[UP] flip: 0, stem: 24681, fault:11771. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1311 -[UP] flip: 5371, stem: 25621, fault:11714. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1307 -[UP] flip: 5292, stem: 26562, fault:11676. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1304 -[UP] flip: 2269, stem: 25603, fault:11676. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1300 -[UP] flip: 0, stem: 26383, fault:11448. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1278 -[UP] flip: 2507, stem: 20421, fault:12132. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1399 -[UP] flip: 1076, stem: 19180, fault:12113. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1398 -[UP] flip: 4161, stem: 17359, fault:12721. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1454 -[UP] flip: 0, stem: 17079, fault:12721. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1454 -[UP] flip: 1719, stem: 17820, fault:12721. flip_cnt: 4, stem_cnt: 1428, fault_cnt:1452 -[UP] flip: 2600, stem: 18198, fault:12778. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1454 -[UP] flip: 4092, stem: 18898, fault:12816. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1458 -[UP] flip: 0, stem: 19817, fault:12816. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1464 -[UP] flip: 0, stem: 19238, fault:12607. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1447 -[UP] flip: 0, stem: 20218, fault:12607. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1447 -[UP] flip: 0, stem: 21578, fault:12607. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1447 -[UP] flip: 3947, stem: 22818, fault:12588. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1445 -[UP] flip: 2259, stem: 23536, fault:12531. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1441 -[UP] flip: 0, stem: 24536, fault:12531. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1439 -[UP] flip: 0, stem: 25476, fault:12531. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1439 -[UP] flip: 5138, stem: 26236, fault:12531. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1435 -[UP] flip: 858, stem: 26776, fault:12512. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1432 -[UP] flip: 3613, stem: 19200, fault:15248. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1668 -[UP] flip: 0, stem: 20540, fault:15248. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1668 -[UP] flip: 0, stem: 22381, fault:15248. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1668 -[UP] flip: 0, stem: 23881, fault:15248. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1668 -[UP] flip: 4892, stem: 24239, fault:15305. flip_cnt: 6, stem_cnt: 1429, fault_cnt:1672 -[UP] flip: 0, stem: 24679, fault:15723. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1699 -[UP] flip: 0, stem: 25498, fault:15837. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1705 -[UP] flip: 1937, stem: 25818, fault:15799. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1703 -[UP] flip: 3765, stem: 25938, fault:16065. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1722 -[UP] flip: 0, stem: 27178, fault:16065. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1722 -[UP] flip: 3322, stem: 27998, fault:16027. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1718 -[UP] flip: 0, stem: 18979, fault:15951. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1709 -[UP] flip: 0, stem: 17922, fault:15989. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1704 -[UP] flip: 0, stem: 18721, fault:15989. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1704 -[UP] flip: 0, stem: 18079, fault:16065. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1710 -[UP] flip: 1022, stem: 18019, fault:16027. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1710 -[UP] flip: 0, stem: 18619, fault:16027. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1710 -[UP] flip: 1411, stem: 19859, fault:16027. flip_cnt: 3, stem_cnt: 1429, fault_cnt:1709 -[UP] flip: 0, stem: 21459, fault:16027. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1709 -[UP] flip: 2635, stem: 21117, fault:16046. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1711 -[UP] flip: 2052, stem: 21697, fault:16445. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1754 -[UP] flip: 2695, stem: 22457, fault:16502. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1759 -[UP] flip: 0, stem: 23718, fault:16445. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1743 -[UP] flip: 3486, stem: 24718, fault:16388. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1739 -[UP] flip: 0, stem: 23378, fault:16388. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1737 -[UP] flip: 4290, stem: 24337, fault:16350. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1744 -[UP] flip: 2200, stem: 24837, fault:16312. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1742 -[UP] flip: 1134, stem: 25939, fault:16255. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1748 -[UP] flip: 0, stem: 26539, fault:16255. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1748 -[UP] flip: 646, stem: 26402, fault:16141. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1736 -[UP] flip: 5078, stem: 26861, fault:16141. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1732 -[UP] flip: 992, stem: 26080, fault:16350. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1754 -[UP] flip: 1101, stem: 26781, fault:16293. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1751 -[UP] flip: 3721, stem: 27841, fault:16236. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1747 -[UP] flip: 4232, stem: 28181, fault:16179. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1743 -[UP] flip: 1301, stem: 28522, fault:16084. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1738 -[UP] flip: 3984, stem: 27722, fault:16027. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1735 -[UP] flip: 4432, stem: 27542, fault:15438. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1679 -[UP] flip: 0, stem: 27161, fault:14659. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1582 -[UP] flip: 4010, stem: 23320, fault:15343. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1640 -[UP] flip: 2498, stem: 22758, fault:15077. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1623 -[UP] flip: 3778, stem: 23698, fault:15343. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1644 -[UP] flip: 0, stem: 24698, fault:15343. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1619 -[UP] flip: 2410, stem: 25458, fault:15343. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1617 -[UP] flip: 4038, stem: 25198, fault:15096. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1601 -[UP] flip: 0, stem: 26958, fault:15096. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1601 -[UP] flip: 2902, stem: 27658, fault:15039. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1598 -[UP] flip: 1143, stem: 28098, fault:14887. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1583 -[UP] flip: 4214, stem: 26679, fault:15533. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1644 -[UP] flip: 1348, stem: 28159, fault:15495. flip_cnt: 3, stem_cnt: 1429, fault_cnt:1641 -[UP] flip: 3758, stem: 28798, fault:15514. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1659 -[UP] flip: 936, stem: 29059, fault:15020. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1609 -[UP] flip: 4569, stem: 29959, fault:15020. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1606 -[UP] flip: 5483, stem: 30179, fault:15020. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1602 -[UP] flip: 0, stem: 30780, fault:15020. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1597 -[UP] flip: 5153, stem: 31800, fault:14963. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1593 -[UP] flip: 2560, stem: 34840, fault:14317. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1525 -[UP] flip: 0, stem: 35620, fault:14032. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1501 -[UP] flip: 4105, stem: 35460, fault:13975. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1497 -[UP] flip: 0, stem: 30461, fault:14868. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1584 -[UP] flip: 5364, stem: 31221, fault:14868. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1580 -[UP] flip: 0, stem: 31821, fault:14868. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1580 -[UP] flip: 0, stem: 32881, fault:14868. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1580 -[UP] flip: 2575, stem: 32341, fault:14849. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1578 -[UP] flip: 4124, stem: 31441, fault:14792. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1568 -[UP] flip: 2240, stem: 32341, fault:14773. flip_cnt: 4, stem_cnt: 1427, fault_cnt:1564 -[UP] flip: 0, stem: 33002, fault:14716. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1560 -[UP] flip: 0, stem: 30601, fault:14583. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1546 -[UP] flip: 0, stem: 23819, fault:12683. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1369 -[UP] flip: 2168, stem: 23159, fault:12645. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1365 -[UP] flip: 3007, stem: 21902, fault:12550. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1354 -[UP] flip: 895, stem: 22923, fault:12493. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1351 -[UP] flip: 0, stem: 24024, fault:12493. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1351 -[UP] flip: 1718, stem: 25604, fault:12493. flip_cnt: 3, stem_cnt: 1424, fault_cnt:1350 -[UP] flip: 755, stem: 26023, fault:12474. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1349 -[UP] flip: 5102, stem: 27103, fault:12417. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1345 -[UP] flip: 953, stem: 26705, fault:12398. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1344 -[UP] flip: 1649, stem: 27865, fault:12341. flip_cnt: 3, stem_cnt: 1423, fault_cnt:1339 -[UP] flip: 0, stem: 28545, fault:12341. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1339 -[UP] flip: 0, stem: 27925, fault:12322. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1336 -[UP] flip: 995, stem: 27964, fault:12303. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1334 -[UP] flip: 1014, stem: 27845, fault:12303. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1334 -[UP] flip: 0, stem: 27404, fault:12626. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1355 -[UP] flip: 0, stem: 28324, fault:12626. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1355 -[UP] flip: 4128, stem: 28244, fault:12645. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1357 -[UP] flip: 5095, stem: 25983, fault:13937. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1509 -[UP] flip: 4319, stem: 25380, fault:13937. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1505 -[UP] flip: 1980, stem: 26881, fault:13937. flip_cnt: 4, stem_cnt: 1427, fault_cnt:1503 -[UP] flip: 2739, stem: 28041, fault:13918. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1494 -[UP] flip: 0, stem: 28341, fault:13481. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1406 -[UP] flip: 2492, stem: 28819, fault:13595. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1409 -[UP] flip: 0, stem: 30199, fault:10897. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1190 -[UP] flip: 0, stem: 31659, fault:10897. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1190 -[UP] flip: 0, stem: 31219, fault:10897. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1190 -[UP] flip: 2570, stem: 31839, fault:10897. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1188 -[UP] flip: 3444, stem: 32519, fault:10840. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1184 -[UP] flip: 0, stem: 31398, fault:10802. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1182 -[UP] flip: 5241, stem: 33238, fault:10764. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1175 -[UP] flip: 1087, stem: 29098, fault:10878. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1218 -[UP] flip: 1050, stem: 29839, fault:10821. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1215 -[UP] flip: 0, stem: 31379, fault:10821. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1215 -[UP] flip: 1840, stem: 28877, fault:11049. flip_cnt: 3, stem_cnt: 1431, fault_cnt:1221 -[UP] flip: 0, stem: 28018, fault:10935. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1215 -[UP] flip: 0, stem: 27578, fault:10935. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1215 -[UP] flip: 3875, stem: 28318, fault:10878. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1211 -[UP] flip: 0, stem: 23797, fault:14317. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1488 -[UP] flip: 958, stem: 24698, fault:14773. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1528 -[UP] flip: 3817, stem: 25478, fault:14716. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1524 -[UP] flip: 0, stem: 24518, fault:14678. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1520 -[UP] flip: 0, stem: 24737, fault:14678. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1520 -[UP] flip: 0, stem: 25097, fault:14678. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1520 -[UP] flip: 987, stem: 25858, fault:14621. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1517 -[UP] flip: 2458, stem: 26758, fault:14640. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1515 -[UP] flip: 1096, stem: 23523, fault:13861. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1409 -[UP] flip: 2832, stem: 24643, fault:13842. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1407 -[UP] flip: 2011, stem: 23105, fault:13728. flip_cnt: 4, stem_cnt: 1423, fault_cnt:1399 -[UP] flip: 894, stem: 22762, fault:13861. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1406 -[UP] flip: 1345, stem: 21722, fault:13842. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1405 -[UP] flip: 2623, stem: 20681, fault:13861. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1406 -[UP] flip: 0, stem: 21721, fault:13747. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1395 -[UP] flip: 3036, stem: 21660, fault:13747. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1398 -[UP] flip: 1235, stem: 22118, fault:13766. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1409 -[UP] flip: 609, stem: 21958, fault:13709. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1406 -[UP] flip: 0, stem: 22837, fault:14431. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1492 -[UP] flip: 2013, stem: 23736, fault:14450. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1494 -[UP] flip: 0, stem: 23937, fault:14412. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1491 -[UP] flip: 0, stem: 23513, fault:14393. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1486 -[UP] flip: 3034, stem: 23953, fault:14374. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1484 -[UP] flip: 0, stem: 23353, fault:14374. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1484 -[UP] flip: 4287, stem: 23451, fault:14393. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1486 -[UP] flip: 0, stem: 24051, fault:14545. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1503 -[UP] flip: 4302, stem: 24230, fault:14507. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1500 -[UP] flip: 0, stem: 21311, fault:14431. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1496 -[UP] flip: 1912, stem: 21073, fault:14336. flip_cnt: 4, stem_cnt: 1435, fault_cnt:1491 -[UP] flip: 1864, stem: 22233, fault:14545. flip_cnt: 3, stem_cnt: 1435, fault_cnt:1507 -[UP] flip: 2107, stem: 21774, fault:14602. flip_cnt: 4, stem_cnt: 1434, fault_cnt:1507 -[UP] flip: 0, stem: 19274, fault:14849. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1515 -[UP] flip: 4709, stem: 19754, fault:14792. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1512 -[UP] flip: 0, stem: 19671, fault:15609. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1589 -[UP] flip: 1699, stem: 20391, fault:15590. flip_cnt: 3, stem_cnt: 1437, fault_cnt:1588 -[UP] flip: 0, stem: 21030, fault:15590. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1588 -[UP] flip: 0, stem: 21290, fault:15267. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1564 -[UP] flip: 2912, stem: 21550, fault:15229. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1560 -[UP] flip: 0, stem: 19948, fault:15818. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1605 -[UP] flip: 0, stem: 20908, fault:15818. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1605 -[UP] flip: 3572, stem: 21168, fault:15761. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1601 -[UP] flip: 4114, stem: 21328, fault:15704. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1597 -[UP] flip: 0, stem: 21309, fault:15571. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1588 -[UP] flip: 0, stem: 20989, fault:15571. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1588 -[UP] flip: 1726, stem: 19910, fault:15457. flip_cnt: 3, stem_cnt: 1438, fault_cnt:1580 -[UP] flip: 5607, stem: 20830, fault:15400. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1576 -[UP] flip: 3348, stem: 19570, fault:15552. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1614 -[UP] flip: 3193, stem: 20190, fault:15533. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1610 -[UP] flip: 0, stem: 16408, fault:16027. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1653 -[UP] flip: 4213, stem: 17368, fault:15970. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1649 -[UP] flip: 0, stem: 17849, fault:15970. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1649 -[UP] flip: 5625, stem: 18769, fault:15913. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1645 -[UP] flip: 5800, stem: 19109, fault:15704. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1579 -[UP] flip: 0, stem: 19949, fault:15039. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1515 -[UP] flip: 0, stem: 19871, fault:14982. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1512 -[UP] flip: 5759, stem: 19551, fault:14925. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1508 -[UP] flip: 3571, stem: 20391, fault:14336. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1462 -[UP] flip: 4058, stem: 20132, fault:14279. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1458 -[UP] flip: 4675, stem: 20253, fault:14241. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1456 -[UP] flip: 0, stem: 20873, fault:14241. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1456 -[UP] flip: 4633, stem: 20871, fault:14279. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1458 -[UP] flip: 2450, stem: 19947, fault:14735. flip_cnt: 4, stem_cnt: 1441, fault_cnt:1499 -[UP] flip: 1164, stem: 20787, fault:15419. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1565 -[UP] flip: 937, stem: 20466, fault:16027. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1622 -[UP] flip: 2715, stem: 19808, fault:16312. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1715 -[UP] flip: 0, stem: 20168, fault:16312. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1715 -[UP] flip: 1002, stem: 20748, fault:16312. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1712 -[UP] flip: 3974, stem: 21147, fault:16350. flip_cnt: 4, stem_cnt: 1441, fault_cnt:1714 -[UP] flip: 4462, stem: 20647, fault:16426. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1719 -[UP] flip: 0, stem: 21787, fault:16426. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1719 -[UP] flip: 3978, stem: 21847, fault:16426. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1715 -[UP] flip: 4684, stem: 21583, fault:15476. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1620 -[UP] flip: 3545, stem: 21603, fault:15476. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1616 -[UP] flip: 4804, stem: 21566, fault:15210. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1589 -[UP] flip: 0, stem: 22407, fault:15210. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1589 -[UP] flip: 1063, stem: 22227, fault:15210. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1589 -[UP] flip: 2932, stem: 21727, fault:15172. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1583 -[UP] flip: 4445, stem: 22067, fault:15153. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1580 -[UP] flip: 1233, stem: 22368, fault:15096. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1577 -[UP] flip: 1039, stem: 20650, fault:15210. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1582 -[UP] flip: 0, stem: 21150, fault:15210. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1582 -[UP] flip: 675, stem: 15735, fault:16293. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1662 -[UP] flip: 0, stem: 17495, fault:16255. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1660 -[UP] flip: 2035, stem: 17752, fault:16293. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1663 -[UP] flip: 0, stem: 17289, fault:16255. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1663 -[UP] flip: 4763, stem: 17809, fault:16236. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1661 -[UP] flip: 1345, stem: 18549, fault:16217. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1658 -[UP] flip: 2831, stem: 18767, fault:16350. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1667 -[UP] flip: 2170, stem: 18408, fault:16350. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1665 -[UP] flip: 0, stem: 18827, fault:16350. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1662 -[UP] flip: 475, stem: 15282, fault:16350. flip_cnt: 2, stem_cnt: 1446, fault_cnt:1695 -[UP] flip: 1159, stem: 16021, fault:16312. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1695 -[UP] flip: 1855, stem: 16721, fault:16331. flip_cnt: 3, stem_cnt: 1447, fault_cnt:1695 -[UP] flip: 4738, stem: 16841, fault:16293. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1692 -[UP] flip: 4530, stem: 18361, fault:16236. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1689 -[UP] flip: 4194, stem: 19201, fault:16179. flip_cnt: 7, stem_cnt: 1447, fault_cnt:1685 -[UP] flip: 2873, stem: 19541, fault:16160. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1681 -[UP] flip: 3821, stem: 20721, fault:16103. flip_cnt: 7, stem_cnt: 1447, fault_cnt:1677 -[UP] flip: 4615, stem: 21181, fault:15818. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1648 -[UP] flip: 5219, stem: 21521, fault:15761. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1645 -[UP] flip: 3169, stem: 22061, fault:15647. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1633 -[UP] flip: 4661, stem: 22399, fault:15647. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1633 -[UP] flip: 2976, stem: 21879, fault:15989. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1690 -[UP] flip: 0, stem: 21120, fault:15609. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1630 -[UP] flip: 5167, stem: 21120, fault:15552. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1627 -[UP] flip: 3374, stem: 18819, fault:15704. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1630 -[UP] flip: 4306, stem: 18419, fault:15609. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1613 -[UP] flip: 1948, stem: 17640, fault:15552. flip_cnt: 4, stem_cnt: 1448, fault_cnt:1607 -[UP] flip: 0, stem: 18300, fault:15552. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1604 -[UP] flip: 2750, stem: 17960, fault:15514. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1602 -[UP] flip: 0, stem: 19880, fault:15514. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1602 -[UP] flip: 1145, stem: 20641, fault:15495. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1599 -[UP] flip: 0, stem: 20422, fault:15571. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1610 -[UP] flip: 0, stem: 21422, fault:15571. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1610 -[UP] flip: 2057, stem: 21442, fault:15533. flip_cnt: 4, stem_cnt: 1446, fault_cnt:1608 -[UP] flip: 0, stem: 21562, fault:16084. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1653 -[UP] flip: 2304, stem: 21162, fault:16084. flip_cnt: 4, stem_cnt: 1446, fault_cnt:1651 -[UP] flip: 4641, stem: 21322, fault:16160. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1655 -[UP] flip: 0, stem: 21662, fault:16160. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1655 -[UP] flip: 0, stem: 21343, fault:16160. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1655 -[UP] flip: 2767, stem: 22001, fault:16160. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1659 -[UP] flip: 4718, stem: 22301, fault:16312. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1683 -[UP] flip: 2642, stem: 22522, fault:16293. flip_cnt: 4, stem_cnt: 1446, fault_cnt:1681 -[UP] flip: 2694, stem: 21923, fault:16236. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1670 -[UP] flip: 1265, stem: 22883, fault:15894. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1647 -[UP] flip: 2926, stem: 23463, fault:15894. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1648 -[UP] flip: 0, stem: 24103, fault:15894. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1648 -[UP] flip: 1115, stem: 24463, fault:15913. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1649 -[UP] flip: 4021, stem: 24803, fault:15970. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1662 -[UP] flip: 2588, stem: 24663, fault:15780. flip_cnt: 4, stem_cnt: 1445, fault_cnt:1645 -[UP] flip: 0, stem: 25703, fault:16141. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1673 -[UP] flip: 2841, stem: 25943, fault:16122. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1671 -[UP] flip: 2698, stem: 25781, fault:15875. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1631 -[UP] flip: 4743, stem: 23281, fault:16122. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1658 -[UP] flip: 1027, stem: 23681, fault:16692. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1743 -[UP] flip: 3110, stem: 24161, fault:16635. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1740 -[UP] flip: 4092, stem: 24121, fault:16635. flip_cnt: 7, stem_cnt: 1447, fault_cnt:1736 -[UP] flip: 2955, stem: 24161, fault:16616. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1732 -[UP] flip: 1991, stem: 24521, fault:16331. flip_cnt: 3, stem_cnt: 1447, fault_cnt:1713 -[UP] flip: 3242, stem: 24941, fault:16255. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1709 -[UP] flip: 0, stem: 24900, fault:16331. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1715 -[UP] flip: 3759, stem: 22482, fault:16179. flip_cnt: 7, stem_cnt: 1446, fault_cnt:1704 -[UP] flip: 3100, stem: 22502, fault:16084. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1695 -[UP] flip: 2072, stem: 22444, fault:16046. flip_cnt: 4, stem_cnt: 1444, fault_cnt:1692 -[UP] flip: 1033, stem: 21542, fault:15989. flip_cnt: 2, stem_cnt: 1446, fault_cnt:1686 -[UP] flip: 3231, stem: 21502, fault:15970. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1689 -[UP] flip: 3272, stem: 21382, fault:15951. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1687 -[UP] flip: 2562, stem: 20422, fault:15913. flip_cnt: 4, stem_cnt: 1446, fault_cnt:1685 -[UP] flip: 1877, stem: 19639, fault:16122. flip_cnt: 4, stem_cnt: 1449, fault_cnt:1704 -[UP] flip: 1326, stem: 20920, fault:16654. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1744 -[UP] flip: 1277, stem: 20199, fault:16692. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1745 -[UP] flip: 1200, stem: 21260, fault:16844. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1759 -[UP] flip: 3618, stem: 21800, fault:16787. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1755 -[UP] flip: 1787, stem: 22600, fault:16787. flip_cnt: 3, stem_cnt: 1448, fault_cnt:1754 -[UP] flip: 3110, stem: 23200, fault:16730. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1750 -[UP] flip: 831, stem: 23780, fault:16084. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1706 -[UP] flip: 0, stem: 23100, fault:16084. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1706 -[UP] flip: 1134, stem: 16682, fault:15837. flip_cnt: 2, stem_cnt: 1446, fault_cnt:1689 -[UP] flip: 3771, stem: 15502, fault:15723. flip_cnt: 7, stem_cnt: 1446, fault_cnt:1682 -[UP] flip: 2830, stem: 12078, fault:16863. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1783 -[UP] flip: 5016, stem: 12236, fault:16806. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1779 -[UP] flip: 1864, stem: 12875, fault:16711. flip_cnt: 3, stem_cnt: 1453, fault_cnt:1774 -[UP] flip: 4486, stem: 11435, fault:16673. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1771 -[UP] flip: 2667, stem: 11834, fault:16635. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1767 -[UP] flip: 3034, stem: 13514, fault:16711. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1773 -[UP] flip: 4662, stem: 14074, fault:16673. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1770 -[UP] flip: 2265, stem: 15835, fault:16635. flip_cnt: 4, stem_cnt: 1453, fault_cnt:1768 -[UP] flip: 3688, stem: 15275, fault:16559. flip_cnt: 7, stem_cnt: 1453, fault_cnt:1763 -[UP] flip: 6103, stem: 16475, fault:15723. flip_cnt: 7, stem_cnt: 1453, fault_cnt:1646 -[UP] flip: 1254, stem: 16574, fault:15818. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1654 -[UP] flip: 1917, stem: 16934, fault:15761. flip_cnt: 3, stem_cnt: 1454, fault_cnt:1651 -[UP] flip: 0, stem: 16712, fault:15818. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1653 -[UP] flip: 1210, stem: 16773, fault:15761. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1650 -[UP] flip: 0, stem: 15495, fault:15381. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1617 -[UP] flip: 2187, stem: 15896, fault:15381. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1615 -[UP] flip: 1847, stem: 16496, fault:15324. flip_cnt: 3, stem_cnt: 1452, fault_cnt:1609 -[UP] flip: 1162, stem: 16976, fault:15305. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1608 -[UP] flip: 3159, stem: 16414, fault:15286. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1609 -[UP] flip: 2844, stem: 16914, fault:15400. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1625 -[UP] flip: 1322, stem: 17193, fault:15400. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1626 -[UP] flip: 6077, stem: 17773, fault:16255. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1765 -[UP] flip: 4606, stem: 18833, fault:16255. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1763 -[UP] flip: 2981, stem: 19213, fault:16217. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1761 -[UP] flip: 2027, stem: 19252, fault:16160. flip_cnt: 3, stem_cnt: 1456, fault_cnt:1758 -[UP] flip: 3900, stem: 19352, fault:16103. flip_cnt: 7, stem_cnt: 1456, fault_cnt:1754 -[UP] flip: 3267, stem: 19272, fault:15780. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1731 -[UP] flip: 5056, stem: 17893, fault:15742. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1729 -[UP] flip: 0, stem: 18473, fault:15742. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1729 -[UP] flip: 0, stem: 17933, fault:15742. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1729 -[UP] flip: 1705, stem: 18253, fault:15723. flip_cnt: 3, stem_cnt: 1455, fault_cnt:1726 -[UP] flip: 4668, stem: 18853, fault:15704. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1724 -[UP] flip: 5687, stem: 17453, fault:15704. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1719 -[UP] flip: 0, stem: 18033, fault:15704. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1719 -[UP] flip: 2115, stem: 18533, fault:15647. flip_cnt: 3, stem_cnt: 1455, fault_cnt:1716 -[UP] flip: 3070, stem: 17714, fault:15628. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1719 -[UP] flip: 0, stem: 15955, fault:15970. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1754 -[UP] flip: 0, stem: 17095, fault:15970. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1754 -[UP] flip: 3865, stem: 17615, fault:15970. flip_cnt: 7, stem_cnt: 1453, fault_cnt:1750 -[UP] flip: 0, stem: 18476, fault:15533. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1671 -[UP] flip: 5235, stem: 18375, fault:15495. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1668 -[UP] flip: 2317, stem: 20596, fault:15476. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1666 -[UP] flip: 5984, stem: 20253, fault:15913. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1756 -[UP] flip: 4865, stem: 20573, fault:15875. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1754 -[UP] flip: 1813, stem: 21213, fault:15875. flip_cnt: 3, stem_cnt: 1455, fault_cnt:1753 -[UP] flip: 4936, stem: 21413, fault:15875. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1751 -[UP] flip: 0, stem: 21853, fault:15875. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1751 -[UP] flip: 1874, stem: 21078, fault:15438. flip_cnt: 3, stem_cnt: 1450, fault_cnt:1709 -[UP] flip: 3120, stem: 21798, fault:15400. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1707 -[UP] flip: 0, stem: 22198, fault:14640. flip_cnt: 0, stem_cnt: 1450, fault_cnt:1635 -[UP] flip: 0, stem: 21837, fault:14602. flip_cnt: 0, stem_cnt: 1451, fault_cnt:1632 -[UP] flip: 4203, stem: 21937, fault:14583. flip_cnt: 7, stem_cnt: 1451, fault_cnt:1633 -[UP] flip: 4857, stem: 22418, fault:15932. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1798 -[UP] flip: 1713, stem: 22858, fault:15932. flip_cnt: 3, stem_cnt: 1450, fault_cnt:1795 -[UP] flip: 0, stem: 22178, fault:15932. flip_cnt: 0, stem_cnt: 1450, fault_cnt:1795 -[UP] flip: 1244, stem: 22159, fault:15913. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1794 -[UP] flip: 4483, stem: 22019, fault:15913. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1790 -[UP] flip: 6541, stem: 22599, fault:15742. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1771 -[UP] flip: 5239, stem: 22497, fault:15799. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1775 -[UP] flip: 5440, stem: 21017, fault:15761. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1771 -[UP] flip: 3315, stem: 21037, fault:15704. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1767 -[UP] flip: 1668, stem: 20457, fault:15704. flip_cnt: 3, stem_cnt: 1451, fault_cnt:1765 -[UP] flip: 2227, stem: 21658, fault:15685. flip_cnt: 4, stem_cnt: 1450, fault_cnt:1760 -[UP] flip: 964, stem: 20956, fault:15799. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1782 -[UP] flip: 4505, stem: 22296, fault:15742. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1778 -[UP] flip: 3063, stem: 23076, fault:15704. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1769 -[UP] flip: 4206, stem: 19236, fault:15951. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1798 -[UP] flip: 1081, stem: 18736, fault:15913. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1796 -[UP] flip: 2240, stem: 18536, fault:15932. flip_cnt: 3, stem_cnt: 1452, fault_cnt:1799 -[UP] flip: 5195, stem: 19076, fault:15894. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1797 -[UP] flip: 1553, stem: 19736, fault:15970. flip_cnt: 3, stem_cnt: 1452, fault_cnt:1809 -[UP] flip: 6333, stem: 15876, fault:15970. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1807 -[UP] flip: 2785, stem: 16136, fault:16464. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1842 -[UP] flip: 0, stem: 16156, fault:16464. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1842 -[UP] flip: 1204, stem: 16716, fault:16464. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1841 -[UP] flip: 0, stem: 16237, fault:16445. flip_cnt: 0, stem_cnt: 1451, fault_cnt:1838 -[UP] flip: 5105, stem: 16897, fault:16445. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1836 -[UP] flip: 3033, stem: 16477, fault:16616. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1845 -[UP] flip: 1054, stem: 17137, fault:16559. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1842 -[UP] flip: 0, stem: 17476, fault:16559. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1842 -[UP] flip: 5285, stem: 17776, fault:16578. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1844 -[UP] flip: 0, stem: 18096, fault:17053. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1886 -[UP] flip: 6500, stem: 17456, fault:16996. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1882 -[UP] flip: 0, stem: 20116, fault:16844. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1872 -[UP] flip: 1926, stem: 19216, fault:16844. flip_cnt: 3, stem_cnt: 1452, fault_cnt:1871 -[UP] flip: 2035, stem: 19676, fault:16844. flip_cnt: 3, stem_cnt: 1452, fault_cnt:1870 -[UP] flip: 0, stem: 19956, fault:16730. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1857 -[UP] flip: 0, stem: 20016, fault:16730. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1857 -[UP] flip: 2372, stem: 20377, fault:16730. flip_cnt: 4, stem_cnt: 1451, fault_cnt:1854 -[UP] flip: 3089, stem: 20297, fault:16711. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1852 -[UP] flip: 2034, stem: 20877, fault:16673. flip_cnt: 4, stem_cnt: 1451, fault_cnt:1850 -[UP] flip: 0, stem: 21318, fault:17661. flip_cnt: 0, stem_cnt: 1450, fault_cnt:1942 -[UP] flip: 5406, stem: 20078, fault:17604. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1938 -[UP] flip: 0, stem: 20017, fault:17566. flip_cnt: 0, stem_cnt: 1451, fault_cnt:1936 -[UP] flip: 1941, stem: 20957, fault:17509. flip_cnt: 3, stem_cnt: 1451, fault_cnt:1933 -[UP] flip: 4350, stem: 21777, fault:17509. flip_cnt: 7, stem_cnt: 1451, fault_cnt:1934 -[UP] flip: 3217, stem: 20798, fault:17699. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1950 -[UP] flip: 0, stem: 20859, fault:17699. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1947 -[UP] flip: 3064, stem: 17620, fault:17490. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1929 -[UP] flip: 6369, stem: 18700, fault:16749. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1855 -[UP] flip: 5737, stem: 17438, fault:16692. flip_cnt: 7, stem_cnt: 1450, fault_cnt:1849 -[UP] flip: 3107, stem: 17396, fault:16749. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1853 -[UP] flip: 5270, stem: 16592, fault:16787. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1857 -[UP] flip: 1309, stem: 16432, fault:17053. flip_cnt: 2, stem_cnt: 1456, fault_cnt:1880 -[UP] flip: 0, stem: 16672, fault:17053. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1880 -[UP] flip: 3056, stem: 16752, fault:16996. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1876 -[UP] flip: 0, stem: 16093, fault:16882. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1859 -[UP] flip: 1215, stem: 15454, fault:16863. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1858 -[UP] flip: 2286, stem: 15675, fault:16863. flip_cnt: 4, stem_cnt: 1453, fault_cnt:1856 -[UP] flip: 3406, stem: 14894, fault:16939. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1858 -[UP] flip: 2968, stem: 12372, fault:16331. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1800 -[UP] flip: 3387, stem: 13392, fault:16331. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1797 -[UP] flip: 2208, stem: 13973, fault:16331. flip_cnt: 4, stem_cnt: 1455, fault_cnt:1790 -[UP] flip: 4056, stem: 13593, fault:16293. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1785 -[UP] flip: 2247, stem: 11893, fault:16103. flip_cnt: 3, stem_cnt: 1455, fault_cnt:1773 -[UP] flip: 2132, stem: 12674, fault:16103. flip_cnt: 4, stem_cnt: 1454, fault_cnt:1771 -[UP] flip: 5760, stem: 13154, fault:16046. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1766 -[UP] flip: 0, stem: 13013, fault:16046. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1766 -[UP] flip: 3240, stem: 12833, fault:16008. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1764 -[UP] flip: 0, stem: 13915, fault:16008. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1764 -[UP] flip: 0, stem: 14795, fault:16008. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1764 -[UP] flip: 0, stem: 17616, fault:16008. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1764 -[UP] flip: 3250, stem: 16576, fault:15799. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1712 -[UP] flip: 2724, stem: 16836, fault:15799. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1710 -[UP] flip: 3256, stem: 12492, fault:14754. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1571 -[UP] flip: 0, stem: 13052, fault:14887. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1591 -[UP] flip: 0, stem: 11712, fault:14887. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1591 -[UP] flip: 0, stem: 12192, fault:14887. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1591 -[UP] flip: 0, stem: 12712, fault:14887. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1591 -[UP] flip: 0, stem: 12972, fault:14887. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1591 -[UP] flip: 0, stem: 12128, fault:14906. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1602 -[UP] flip: 1470, stem: 12409, fault:14887. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1599 -[UP] flip: 5255, stem: 12389, fault:14830. flip_cnt: 5, stem_cnt: 1459, fault_cnt:1596 -[UP] flip: 2537, stem: 10289, fault:14773. flip_cnt: 4, stem_cnt: 1459, fault_cnt:1591 -[UP] flip: 0, stem: 10769, fault:14773. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1588 -[UP] flip: 1257, stem: 11109, fault:14735. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1587 -[UP] flip: 4427, stem: 12469, fault:14697. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1583 -[UP] flip: 4156, stem: 12549, fault:14640. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1574 -[UP] flip: 0, stem: 12730, fault:14640. flip_cnt: 0, stem_cnt: 1458, fault_cnt:1574 -[UP] flip: 0, stem: 13310, fault:14640. flip_cnt: 0, stem_cnt: 1458, fault_cnt:1574 -[UP] flip: 0, stem: 12170, fault:14602. flip_cnt: 0, stem_cnt: 1458, fault_cnt:1572 -[UP] flip: 1404, stem: 10829, fault:14982. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1600 -[UP] flip: 0, stem: 11870, fault:14982. flip_cnt: 0, stem_cnt: 1458, fault_cnt:1600 -[UP] flip: 1209, stem: 10227, fault:16768. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1801 -[UP] flip: 2095, stem: 10687, fault:16711. flip_cnt: 3, stem_cnt: 1461, fault_cnt:1798 -[UP] flip: 0, stem: 10967, fault:16711. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1798 -[UP] flip: 2569, stem: 10487, fault:17547. flip_cnt: 4, stem_cnt: 1461, fault_cnt:1904 -[UP] flip: 1211, stem: 9248, fault:18155. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1940 -[UP] flip: 1962, stem: 10208, fault:18155. flip_cnt: 3, stem_cnt: 1460, fault_cnt:1937 -[UP] flip: 3177, stem: 10528, fault:18098. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1933 -[UP] flip: 2269, stem: 9988, fault:18060. flip_cnt: 4, stem_cnt: 1460, fault_cnt:1935 -[UP] flip: 3257, stem: 10488, fault:18003. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1928 -[UP] flip: 926, stem: 10847, fault:17889. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1916 -[UP] flip: 1330, stem: 11867, fault:17832. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1913 -[UP] flip: 0, stem: 12607, fault:17680. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1881 -[UP] flip: 0, stem: 10929, fault:17623. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1876 -[UP] flip: 6494, stem: 12269, fault:17566. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1872 -[UP] flip: 3040, stem: 12107, fault:17604. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1874 -[UP] flip: 0, stem: 11827, fault:17623. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1876 -[UP] flip: 4986, stem: 12427, fault:17604. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1874 -[UP] flip: 977, stem: 14887, fault:17547. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1871 -[UP] flip: 0, stem: 13888, fault:17547. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1871 -[UP] flip: 0, stem: 14009, fault:17547. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1871 -[UP] flip: 1959, stem: 13668, fault:17490. flip_cnt: 3, stem_cnt: 1460, fault_cnt:1871 -[UP] flip: 4028, stem: 12008, fault:17433. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1867 -[UP] flip: 0, stem: 12627, fault:15248. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1637 -[UP] flip: 3858, stem: 12687, fault:15248. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1633 -[UP] flip: 6322, stem: 12727, fault:15191. flip_cnt: 7, stem_cnt: 1461, fault_cnt:1627 -[UP] flip: 0, stem: 12627, fault:15229. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1629 -[UP] flip: 1724, stem: 12027, fault:15210. flip_cnt: 3, stem_cnt: 1461, fault_cnt:1624 -[UP] flip: 1290, stem: 11187, fault:15153. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1621 -[UP] flip: 1215, stem: 11546, fault:15172. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1622 -[UP] flip: 3358, stem: 10684, fault:16616. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1788 -[UP] flip: 5431, stem: 10804, fault:16901. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1822 -[UP] flip: 3430, stem: 10804, fault:16882. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1820 -[UP] flip: 6226, stem: 10204, fault:16825. flip_cnt: 7, stem_cnt: 1464, fault_cnt:1816 -[UP] flip: 2178, stem: 11185, fault:16825. flip_cnt: 4, stem_cnt: 1463, fault_cnt:1814 -[UP] flip: 1398, stem: 11645, fault:16825. flip_cnt: 2, stem_cnt: 1463, fault_cnt:1810 -[UP] flip: 6793, stem: 11186, fault:16768. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1806 -[UP] flip: 0, stem: 10546, fault:16749. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1810 -[UP] flip: 5614, stem: 10025, fault:17661. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1896 -[UP] flip: 3038, stem: 10465, fault:17623. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1894 -[UP] flip: 523, stem: 11366, fault:17186. flip_cnt: 1, stem_cnt: 1462, fault_cnt:1851 -[UP] flip: 1520, stem: 12666, fault:17205. flip_cnt: 3, stem_cnt: 1462, fault_cnt:1852 -[UP] flip: 3286, stem: 13826, fault:17205. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1852 -[UP] flip: 4796, stem: 13826, fault:17186. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1847 -[UP] flip: 903, stem: 13846, fault:15134. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1627 -[UP] flip: 0, stem: 14086, fault:15134. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1627 -[UP] flip: 3304, stem: 13846, fault:15115. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1625 -[UP] flip: 0, stem: 13488, fault:15115. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1625 -[UP] flip: 0, stem: 13908, fault:15115. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1625 -[UP] flip: 0, stem: 14186, fault:15115. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1625 -[UP] flip: 0, stem: 14165, fault:15115. flip_cnt: 0, stem_cnt: 1463, fault_cnt:1625 -[UP] flip: 0, stem: 15345, fault:15115. flip_cnt: 0, stem_cnt: 1463, fault_cnt:1625 -[UP] flip: 3645, stem: 14505, fault:15077. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1621 -[UP] flip: 0, stem: 16866, fault:15077. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1621 -[UP] flip: 6827, stem: 14525, fault:17053. flip_cnt: 7, stem_cnt: 1463, fault_cnt:1835 -[UP] flip: 0, stem: 14785, fault:17281. flip_cnt: 0, stem_cnt: 1463, fault_cnt:1861 -[UP] flip: 5224, stem: 13363, fault:17338. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1864 -[UP] flip: 3661, stem: 13501, fault:17870. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1905 -[UP] flip: 0, stem: 14002, fault:18459. flip_cnt: 0, stem_cnt: 1466, fault_cnt:1947 -[UP] flip: 5408, stem: 9822, fault:18858. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1993 -[UP] flip: 1323, stem: 10083, fault:18858. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1990 -[UP] flip: 0, stem: 11682, fault:18877. flip_cnt: 0, stem_cnt: 1466, fault_cnt:1990 -[UP] flip: 0, stem: 12362, fault:18877. flip_cnt: 0, stem_cnt: 1466, fault_cnt:1990 -[UP] flip: 983, stem: 13680, fault:18915. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1991 -[UP] flip: 0, stem: 13860, fault:19029. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1999 -[UP] flip: 3309, stem: 13538, fault:19048. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2001 -[UP] flip: 5084, stem: 13578, fault:19067. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2001 -[UP] flip: 3784, stem: 12236, fault:19067. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2004 -[UP] flip: 3314, stem: 11776, fault:19086. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2009 -[UP] flip: 2183, stem: 10776, fault:19029. flip_cnt: 3, stem_cnt: 1472, fault_cnt:2006 -[UP] flip: 3384, stem: 10316, fault:18991. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2004 -[UP] flip: 2223, stem: 9116, fault:18991. flip_cnt: 3, stem_cnt: 1472, fault_cnt:2001 -[UP] flip: 0, stem: 9496, fault:18991. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2001 -[UP] flip: 4745, stem: 8256, fault:18972. flip_cnt: 7, stem_cnt: 1472, fault_cnt:2002 -[UP] flip: 1690, stem: 8657, fault:19105. flip_cnt: 3, stem_cnt: 1471, fault_cnt:2021 -[UP] flip: 1021, stem: 8777, fault:19048. flip_cnt: 2, stem_cnt: 1471, fault_cnt:2018 -[UP] flip: 2715, stem: 6697, fault:19029. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2016 -[UP] flip: 0, stem: 6937, fault:18744. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1998 -[UP] flip: 3298, stem: 7697, fault:18706. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1996 -[UP] flip: 3318, stem: 7897, fault:18022. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1943 -[UP] flip: 1364, stem: 7057, fault:17813. flip_cnt: 2, stem_cnt: 1471, fault_cnt:1919 -[UP] flip: 0, stem: 7137, fault:17813. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1919 -[UP] flip: 0, stem: 6917, fault:17813. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1919 -[UP] flip: 2218, stem: 7298, fault:17813. flip_cnt: 4, stem_cnt: 1470, fault_cnt:1917 -[UP] flip: 5795, stem: 7798, fault:17452. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1884 -[UP] flip: 1737, stem: 7058, fault:17433. flip_cnt: 3, stem_cnt: 1470, fault_cnt:1883 -[UP] flip: 0, stem: 7378, fault:17433. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1883 -[UP] flip: 0, stem: 7778, fault:17433. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1883 -[UP] flip: 0, stem: 7138, fault:17433. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1883 -[UP] flip: 3144, stem: 6838, fault:17395. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1881 -[UP] flip: 2357, stem: 7559, fault:17395. flip_cnt: 4, stem_cnt: 1469, fault_cnt:1879 -[UP] flip: 1249, stem: 6879, fault:17357. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1875 -[UP] flip: 3597, stem: 6497, fault:17281. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1870 -[UP] flip: 525, stem: 6657, fault:17110. flip_cnt: 1, stem_cnt: 1471, fault_cnt:1834 -[UP] flip: 1318, stem: 6317, fault:17072. flip_cnt: 2, stem_cnt: 1471, fault_cnt:1831 -[UP] flip: 1606, stem: 6718, fault:17015. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1828 -[UP] flip: 7116, stem: 6918, fault:18022. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1898 -[UP] flip: 2591, stem: 7057, fault:18364. flip_cnt: 3, stem_cnt: 1471, fault_cnt:1995 -[UP] flip: 1469, stem: 6218, fault:18345. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1986 -[UP] flip: 0, stem: 6097, fault:18364. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1986 -[UP] flip: 3313, stem: 5075, fault:18611. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2015 -[UP] flip: 0, stem: 6278, fault:18611. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2015 -[UP] flip: 1340, stem: 6439, fault:18611. flip_cnt: 2, stem_cnt: 1469, fault_cnt:2014 -[UP] flip: 0, stem: 6759, fault:18611. flip_cnt: 0, stem_cnt: 1469, fault_cnt:2014 -[UP] flip: 4938, stem: 7899, fault:18611. flip_cnt: 7, stem_cnt: 1469, fault_cnt:2010 -[UP] flip: 0, stem: 6898, fault:18592. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2004 -[UP] flip: 1339, stem: 6979, fault:18744. flip_cnt: 2, stem_cnt: 1469, fault_cnt:2024 -[UP] flip: 0, stem: 7639, fault:18744. flip_cnt: 0, stem_cnt: 1469, fault_cnt:2024 -[UP] flip: 1070, stem: 7978, fault:18763. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2025 -[UP] flip: 3324, stem: 9258, fault:19105. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2058 -[UP] flip: 3282, stem: 7899, fault:19086. flip_cnt: 5, stem_cnt: 1469, fault_cnt:2052 -[UP] flip: 3330, stem: 7917, fault:19086. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2056 -[UP] flip: 1343, stem: 7856, fault:19542. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2091 -[UP] flip: 3470, stem: 7796, fault:19941. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2124 -[UP] flip: 2147, stem: 8018, fault:19580. flip_cnt: 4, stem_cnt: 1470, fault_cnt:2058 -[UP] flip: 5527, stem: 7418, fault:19561. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2044 -[UP] flip: 1265, stem: 7398, fault:19523. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2041 -[UP] flip: 3021, stem: 5476, fault:19732. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2064 -[UP] flip: 3345, stem: 5396, fault:19105. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2015 -[UP] flip: 2195, stem: 4716, fault:19086. flip_cnt: 3, stem_cnt: 1472, fault_cnt:2014 -[UP] flip: 1270, stem: 4915, fault:19067. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2012 -[UP] flip: 5567, stem: 4915, fault:19276. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2066 -[UP] flip: 0, stem: 5035, fault:19276. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2066 -[UP] flip: 1364, stem: 5136, fault:19257. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2065 -[UP] flip: 2928, stem: 4775, fault:19238. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2063 -[UP] flip: 2184, stem: 4914, fault:19295. flip_cnt: 4, stem_cnt: 1474, fault_cnt:2064 -[UP] flip: 4307, stem: 5354, fault:19827. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2111 -[UP] flip: 0, stem: 4773, fault:19846. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2115 -[UP] flip: 1300, stem: 4594, fault:19789. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2112 -[UP] flip: 3347, stem: 5674, fault:19732. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2109 -[UP] flip: 1229, stem: 4632, fault:19789. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2117 -[UP] flip: 2171, stem: 4812, fault:19751. flip_cnt: 4, stem_cnt: 1476, fault_cnt:2115 -[UP] flip: 4117, stem: 4652, fault:19713. flip_cnt: 7, stem_cnt: 1476, fault_cnt:2115 -[UP] flip: 3451, stem: 4652, fault:19504. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2103 -[UP] flip: 3027, stem: 4452, fault:18098. flip_cnt: 5, stem_cnt: 1476, fault_cnt:1907 -[UP] flip: 1284, stem: 6113, fault:17509. flip_cnt: 2, stem_cnt: 1475, fault_cnt:1865 -[UP] flip: 5699, stem: 7653, fault:17509. flip_cnt: 5, stem_cnt: 1475, fault_cnt:1862 -[UP] flip: 1754, stem: 6715, fault:17509. flip_cnt: 2, stem_cnt: 1473, fault_cnt:1861 -[UP] flip: 0, stem: 6995, fault:17509. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1861 -[UP] flip: 5173, stem: 5635, fault:17509. flip_cnt: 7, stem_cnt: 1473, fault_cnt:1857 -[UP] flip: 5520, stem: 6215, fault:17471. flip_cnt: 7, stem_cnt: 1473, fault_cnt:1853 -[UP] flip: 5950, stem: 6455, fault:17471. flip_cnt: 5, stem_cnt: 1473, fault_cnt:1849 -[UP] flip: 6558, stem: 6655, fault:17433. flip_cnt: 7, stem_cnt: 1473, fault_cnt:1845 -[UP] flip: 2915, stem: 6514, fault:17452. flip_cnt: 5, stem_cnt: 1474, fault_cnt:1847 -[UP] flip: 7090, stem: 7134, fault:17680. flip_cnt: 7, stem_cnt: 1474, fault_cnt:1864 -[UP] flip: 7377, stem: 8394, fault:17642. flip_cnt: 7, stem_cnt: 1474, fault_cnt:1860 -[UP] flip: 3491, stem: 8654, fault:17623. flip_cnt: 5, stem_cnt: 1474, fault_cnt:1858 -[UP] flip: 2264, stem: 7775, fault:17585. flip_cnt: 4, stem_cnt: 1473, fault_cnt:1850 -[UP] flip: 948, stem: 9656, fault:17528. flip_cnt: 2, stem_cnt: 1472, fault_cnt:1844 -[UP] flip: 4257, stem: 7837, fault:17433. flip_cnt: 7, stem_cnt: 1471, fault_cnt:1837 -[UP] flip: 0, stem: 7797, fault:17433. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1835 -[UP] flip: 0, stem: 7998, fault:17433. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1835 -[UP] flip: 5448, stem: 8458, fault:17414. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1833 -[UP] flip: 1200, stem: 8338, fault:17395. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1832 -[UP] flip: 0, stem: 8298, fault:17357. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1830 -[UP] flip: 4026, stem: 8618, fault:17300. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1826 -[UP] flip: 3127, stem: 8998, fault:17205. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1808 -[UP] flip: 4894, stem: 8138, fault:17148. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1804 -[UP] flip: 3637, stem: 7157, fault:17015. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1786 -[UP] flip: 2366, stem: 8098, fault:16616. flip_cnt: 4, stem_cnt: 1470, fault_cnt:1746 -[UP] flip: 0, stem: 8378, fault:16616. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1743 -[UP] flip: 5386, stem: 4938, fault:16578. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1739 -[UP] flip: 0, stem: 5639, fault:16882. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1759 -[UP] flip: 1228, stem: 7520, fault:16882. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1758 -[UP] flip: 3104, stem: 7201, fault:16863. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1756 -[UP] flip: 5790, stem: 6098, fault:16844. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1754 -[UP] flip: 1357, stem: 7059, fault:16825. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1751 -[UP] flip: 0, stem: 7379, fault:16825. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1751 -[UP] flip: 3136, stem: 7357, fault:16863. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1753 -[UP] flip: 800, stem: 7538, fault:16901. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1757 -[UP] flip: 3698, stem: 7298, fault:16901. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1754 -[UP] flip: 1335, stem: 7398, fault:16293. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1689 -[UP] flip: 0, stem: 7337, fault:16369. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1693 -[UP] flip: 6780, stem: 7077, fault:18060. flip_cnt: 7, stem_cnt: 1471, fault_cnt:1904 -[UP] flip: 3151, stem: 6337, fault:18041. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1902 -[UP] flip: 4226, stem: 4697, fault:17946. flip_cnt: 7, stem_cnt: 1471, fault_cnt:1892 -[UP] flip: 6053, stem: 4917, fault:17870. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1888 -[UP] flip: 5413, stem: 5217, fault:17832. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1886 -[UP] flip: 0, stem: 5437, fault:17832. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1886 -[UP] flip: 868, stem: 6278, fault:17813. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1883 -[UP] flip: 1200, stem: 6619, fault:17756. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1880 -[UP] flip: 0, stem: 6499, fault:17756. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1880 -[UP] flip: 0, stem: 6579, fault:17756. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1880 -[UP] flip: 0, stem: 6057, fault:17832. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1902 -[UP] flip: 0, stem: 7898, fault:17832. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1902 -[UP] flip: 0, stem: 5977, fault:17832. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1902 -[UP] flip: 3158, stem: 5996, fault:17813. flip_cnt: 5, stem_cnt: 1472, fault_cnt:1900 -[UP] flip: 911, stem: 6917, fault:17756. flip_cnt: 2, stem_cnt: 1471, fault_cnt:1897 -[UP] flip: 5616, stem: 6457, fault:18934. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2024 -[UP] flip: 0, stem: 6497, fault:18934. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2024 -[UP] flip: 802, stem: 6516, fault:18991. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2027 -[UP] flip: 1647, stem: 6977, fault:19181. flip_cnt: 2, stem_cnt: 1471, fault_cnt:2050 -[UP] flip: 3405, stem: 7077, fault:19162. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2048 -[UP] flip: 1779, stem: 7098, fault:19067. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2043 -[UP] flip: 1643, stem: 7279, fault:19010. flip_cnt: 2, stem_cnt: 1469, fault_cnt:2040 -[UP] flip: 5924, stem: 7216, fault:19029. flip_cnt: 6, stem_cnt: 1472, fault_cnt:2044 -[UP] flip: 2117, stem: 7177, fault:19124. flip_cnt: 4, stem_cnt: 1471, fault_cnt:2053 -[UP] flip: 1257, stem: 7518, fault:19105. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2047 -[UP] flip: 3812, stem: 8498, fault:19048. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2043 -[UP] flip: 3529, stem: 9138, fault:18972. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2037 -[UP] flip: 5557, stem: 9038, fault:17566. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1892 -[UP] flip: 0, stem: 8938, fault:17566. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1892 -[UP] flip: 4985, stem: 9458, fault:17528. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1888 -[UP] flip: 7134, stem: 10178, fault:17471. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1882 -[UP] flip: 6116, stem: 8938, fault:17604. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1898 -[UP] flip: 4524, stem: 8618, fault:17585. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1899 -[UP] flip: 0, stem: 7718, fault:19257. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2077 -[UP] flip: 4563, stem: 7958, fault:19219. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2073 -[UP] flip: 0, stem: 6838, fault:19219. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2073 -[UP] flip: 6094, stem: 5095, fault:19352. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2083 -[UP] flip: 1244, stem: 4134, fault:19580. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2107 -[UP] flip: 2101, stem: 4154, fault:19523. flip_cnt: 3, stem_cnt: 1474, fault_cnt:2104 -[UP] flip: 0, stem: 5355, fault:19523. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2104 -[UP] flip: 2653, stem: 5456, fault:19504. flip_cnt: 4, stem_cnt: 1472, fault_cnt:2102 -[UP] flip: 3190, stem: 5374, fault:19542. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2102 -[UP] flip: 2913, stem: 4753, fault:19637. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2108 -[UP] flip: 3552, stem: 5433, fault:19523. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2100 -[UP] flip: 3734, stem: 4511, fault:19542. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2102 -[UP] flip: 4414, stem: 4491, fault:19618. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2122 -[UP] flip: 0, stem: 4691, fault:19618. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2116 -[UP] flip: 2669, stem: 4591, fault:19561. flip_cnt: 3, stem_cnt: 1477, fault_cnt:2113 -[UP] flip: 7188, stem: 5371, fault:19561. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2109 -[UP] flip: 1264, stem: 4451, fault:19390. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2095 -[UP] flip: 964, stem: 4092, fault:19333. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2092 -[UP] flip: 3410, stem: 5192, fault:19295. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2090 -[UP] flip: 1163, stem: 4852, fault:19219. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2087 -[UP] flip: 6804, stem: 4792, fault:19162. flip_cnt: 7, stem_cnt: 1476, fault_cnt:2083 -[UP] flip: 1888, stem: 4932, fault:19162. flip_cnt: 3, stem_cnt: 1476, fault_cnt:2080 -[UP] flip: 0, stem: 5453, fault:19162. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2080 -[UP] flip: 6719, stem: 6593, fault:19105. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2076 -[UP] flip: 2078, stem: 7573, fault:19105. flip_cnt: 3, stem_cnt: 1475, fault_cnt:2075 -[UP] flip: 1386, stem: 7094, fault:19048. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2072 -[UP] flip: 966, stem: 7233, fault:19029. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2071 -[UP] flip: 2670, stem: 6813, fault:19010. flip_cnt: 4, stem_cnt: 1475, fault_cnt:2069 -[UP] flip: 4312, stem: 5454, fault:18953. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2062 -[UP] flip: 3421, stem: 3694, fault:17737. flip_cnt: 5, stem_cnt: 1474, fault_cnt:1939 -[UP] flip: 4600, stem: 3155, fault:18991. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2090 -[UP] flip: 0, stem: 3716, fault:18991. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2094 -[UP] flip: 2717, stem: 3452, fault:19029. flip_cnt: 4, stem_cnt: 1476, fault_cnt:2097 -[UP] flip: 3255, stem: 3692, fault:19447. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2128 -[UP] flip: 5943, stem: 4192, fault:18915. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2087 -[UP] flip: 0, stem: 4312, fault:18915. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2087 -[UP] flip: 0, stem: 4454, fault:18877. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2084 -[UP] flip: 3590, stem: 4294, fault:18839. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2082 -[UP] flip: 5953, stem: 3992, fault:18744. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2078 -[UP] flip: 3024, stem: 3490, fault:18877. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2087 -[UP] flip: 0, stem: 3729, fault:18896. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2087 -[UP] flip: 1489, stem: 3469, fault:18858. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2084 -[UP] flip: 0, stem: 3669, fault:18858. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2084 -[UP] flip: 1296, stem: 3770, fault:18877. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2085 -[UP] flip: 1167, stem: 2950, fault:18896. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2086 -[UP] flip: 0, stem: 3490, fault:19257. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2110 -[UP] flip: 5084, stem: 3790, fault:19257. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2106 -[UP] flip: 3468, stem: 3690, fault:18877. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2074 -[UP] flip: 1107, stem: 4231, fault:18858. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2070 -[UP] flip: 3520, stem: 4271, fault:18839. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2068 -[UP] flip: 0, stem: 4311, fault:18744. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2061 -[UP] flip: 0, stem: 3769, fault:19124. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2093 -[UP] flip: 0, stem: 3610, fault:19124. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2093 -[UP] flip: 0, stem: 3670, fault:19124. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2093 -[UP] flip: 3643, stem: 3210, fault:19067. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2090 -[UP] flip: 0, stem: 2548, fault:19048. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2089 -[UP] flip: 2367, stem: 2889, fault:19048. flip_cnt: 4, stem_cnt: 1479, fault_cnt:2087 -[UP] flip: 968, stem: 2448, fault:19105. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2087 -[UP] flip: 3527, stem: 2288, fault:19428. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2115 -[UP] flip: 1800, stem: 1848, fault:19713. flip_cnt: 3, stem_cnt: 1480, fault_cnt:2139 -[UP] flip: 1261, stem: 1768, fault:19713. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2138 -[UP] flip: 3467, stem: 1547, fault:19732. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2134 -[UP] flip: 6508, stem: 1247, fault:19808. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2140 -[UP] flip: 3648, stem: 1207, fault:19751. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2136 -[UP] flip: 2270, stem: 2067, fault:19694. flip_cnt: 3, stem_cnt: 1481, fault_cnt:2131 -[UP] flip: 1661, stem: 2328, fault:19694. flip_cnt: 3, stem_cnt: 1480, fault_cnt:2129 -[UP] flip: 3532, stem: 2466, fault:19922. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2148 -[UP] flip: 3657, stem: 2386, fault:19903. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2146 -[UP] flip: 0, stem: 2566, fault:19808. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2131 -[UP] flip: 961, stem: 2747, fault:19751. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2128 -[UP] flip: 1622, stem: 1306, fault:19808. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2128 -[UP] flip: 4456, stem: 1446, fault:19751. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2124 -[UP] flip: 1530, stem: 3247, fault:19694. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2119 -[UP] flip: 3894, stem: 2205, fault:19694. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2122 -[UP] flip: 2344, stem: 1445, fault:19694. flip_cnt: 3, stem_cnt: 1483, fault_cnt:2125 -[UP] flip: 0, stem: 1586, fault:19694. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2125 -[UP] flip: 0, stem: 1646, fault:19694. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2125 -[UP] flip: 962, stem: 1665, fault:19751. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2128 -[UP] flip: 962, stem: 1766, fault:19694. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2125 -[UP] flip: 6289, stem: 1626, fault:19656. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2122 -[UP] flip: 2613, stem: 2507, fault:19637. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2120 -[UP] flip: 0, stem: 2807, fault:19637. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2117 -[UP] flip: 5091, stem: 3687, fault:19580. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2113 -[UP] flip: 966, stem: 3746, fault:19637. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2114 -[UP] flip: 2382, stem: 3244, fault:19846. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2143 -[UP] flip: 0, stem: 1984, fault:19846. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2146 -[UP] flip: 6112, stem: 1844, fault:19808. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2144 -[UP] flip: 2853, stem: 1584, fault:19789. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2142 -[UP] flip: 5124, stem: 4126, fault:19960. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2170 -[UP] flip: 0, stem: 2986, fault:19827. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2159 -[UP] flip: 0, stem: 4646, fault:19827. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2159 -[UP] flip: 1353, stem: 3626, fault:19846. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2160 -[UP] flip: 5905, stem: 1984, fault:19865. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2162 -[UP] flip: 5883, stem: 2286, fault:19941. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2172 -[UP] flip: 1565, stem: 3527, fault:19827. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2166 -[UP] flip: 4662, stem: 3067, fault:19789. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2163 -[UP] flip: 4561, stem: 3427, fault:19789. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2161 -[UP] flip: 0, stem: 3647, fault:19732. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2158 -[UP] flip: 1437, stem: 5228, fault:19732. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2155 -[UP] flip: 1928, stem: 4746, fault:19827. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2164 -[UP] flip: 8530, stem: 4826, fault:19770. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2160 -[UP] flip: 0, stem: 5867, fault:19770. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2160 -[UP] flip: 5022, stem: 5827, fault:19713. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2157 -[UP] flip: 4235, stem: 5687, fault:19656. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2151 -[UP] flip: 0, stem: 6288, fault:19542. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2144 -[UP] flip: 1716, stem: 7809, fault:19542. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2143 -[UP] flip: 4475, stem: 7569, fault:19485. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2140 -[UP] flip: 1518, stem: 7689, fault:19466. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2135 -[UP] flip: 0, stem: 7829, fault:19618. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2146 -[UP] flip: 8408, stem: 7489, fault:19618. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2142 -[UP] flip: 0, stem: 7409, fault:19618. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2142 -[UP] flip: 0, stem: 7509, fault:19618. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2142 -[UP] flip: 4984, stem: 7569, fault:19580. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2139 -[UP] flip: 6977, stem: 7189, fault:19523. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2132 -[UP] flip: 0, stem: 5808, fault:19523. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2132 -[UP] flip: 2138, stem: 3846, fault:19960. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2160 -[UP] flip: 6793, stem: 4326, fault:20169. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2174 -[UP] flip: 1781, stem: 6067, fault:19960. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2159 -[UP] flip: 4994, stem: 4585, fault:19998. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2162 -[UP] flip: 1445, stem: 5426, fault:20055. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2168 -[UP] flip: 8341, stem: 5386, fault:19998. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2164 -[UP] flip: 6054, stem: 3844, fault:20055. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2167 -[UP] flip: 5043, stem: 3544, fault:20188. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2180 -[UP] flip: 1724, stem: 5225, fault:19960. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2161 -[UP] flip: 4507, stem: 5065, fault:19960. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2158 -[UP] flip: 4495, stem: 4585, fault:19903. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2152 -[UP] flip: 6867, stem: 4125, fault:19865. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2147 -[UP] flip: 5796, stem: 4285, fault:19808. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2143 -[UP] flip: 0, stem: 4765, fault:19694. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2136 -[UP] flip: 0, stem: 4805, fault:19694. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2136 -[UP] flip: 7025, stem: 4345, fault:19637. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2132 -[UP] flip: 5012, stem: 4225, fault:19599. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2129 -[UP] flip: 1646, stem: 4105, fault:19542. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2125 -[UP] flip: 6405, stem: 4745, fault:19561. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2128 -[UP] flip: 0, stem: 3805, fault:19561. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2128 -[UP] flip: 6888, stem: 1242, fault:19827. flip_cnt: 5, stem_cnt: 1486, fault_cnt:2151 -[UP] flip: 4251, stem: 1022, fault:19960. flip_cnt: 5, stem_cnt: 1486, fault_cnt:2170 -[UP] flip: 6526, stem: 842, fault:19922. flip_cnt: 5, stem_cnt: 1486, fault_cnt:2167 -[UP] flip: 1537, stem: 1442, fault:19922. flip_cnt: 2, stem_cnt: 1486, fault_cnt:2168 -[UP] flip: 1952, stem: 1382, fault:20036. flip_cnt: 2, stem_cnt: 1486, fault_cnt:2178 -[UP] flip: 3905, stem: 2022, fault:20036. flip_cnt: 2, stem_cnt: 1486, fault_cnt:2179 -[UP] flip: 1581, stem: 1802, fault:20036. flip_cnt: 2, stem_cnt: 1486, fault_cnt:2180 -[UP] flip: 6542, stem: 0, fault:20074. flip_cnt: 5, stem_cnt: 1488, fault_cnt:2183 -FIND SOLUTION! -[SOL] flip: 0, stem: 0, fault:20245. flip_cnt: 0, stem_cnt: 1488, fault_cnt:2195 -coverage: 0.6626 pattern: 2 before: 2718 now: 1652 -checking valid circuit ... result: 1. -local search! -[UP] flip: 0, stem: 7351, fault:231. flip_cnt: 0, stem_cnt: 1137, fault_cnt:363 -[UP] flip: 0, stem: 4681, fault:808. flip_cnt: 0, stem_cnt: 1267, fault_cnt:949 -[UP] flip: 0, stem: 4558, fault:1046. flip_cnt: 0, stem_cnt: 1310, fault_cnt:1137 -[UP] flip: 9, stem: 4690, fault:1433. flip_cnt: 5, stem_cnt: 1338, fault_cnt:1204 -[UP] flip: 13, stem: 4646, fault:1422. flip_cnt: 7, stem_cnt: 1342, fault_cnt:954 -[UP] flip: 0, stem: 4524, fault:2061. flip_cnt: 0, stem_cnt: 1364, fault_cnt:1158 -[UP] flip: 20, stem: 4445, fault:2699. flip_cnt: 7, stem_cnt: 1363, fault_cnt:1280 -[UP] flip: 0, stem: 4643, fault:3340. flip_cnt: 0, stem_cnt: 1365, fault_cnt:1369 -[UP] flip: 4, stem: 5063, fault:3952. flip_cnt: 3, stem_cnt: 1365, fault_cnt:1496 -[UP] flip: 34, stem: 6082, fault:4257. flip_cnt: 5, stem_cnt: 1366, fault_cnt:1598 -[UP] flip: 14, stem: 6641, fault:4154. flip_cnt: 2, stem_cnt: 1347, fault_cnt:1416 -[UP] flip: 46, stem: 7281, fault:4073. flip_cnt: 5, stem_cnt: 1347, fault_cnt:1181 -[UP] flip: 0, stem: 6613, fault:4359. flip_cnt: 0, stem_cnt: 1355, fault_cnt:1245 -[UP] flip: 19, stem: 6688, fault:4020. flip_cnt: 4, stem_cnt: 1360, fault_cnt:1164 -[UP] flip: 51, stem: 7400, fault:5294. flip_cnt: 7, stem_cnt: 1368, fault_cnt:1330 -[UP] flip: 0, stem: 6931, fault:6209. flip_cnt: 0, stem_cnt: 1377, fault_cnt:1517 -[UP] flip: 13, stem: 6444, fault:7590. flip_cnt: 5, stem_cnt: 1384, fault_cnt:1670 -[UP] flip: 32, stem: 7360, fault:7931. flip_cnt: 7, stem_cnt: 1388, fault_cnt:1674 -[UP] flip: 66, stem: 7317, fault:7939. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1669 -[UP] flip: 24, stem: 8715, fault:8106. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1684 -[UP] flip: 55, stem: 7090, fault:7912. flip_cnt: 5, stem_cnt: 1378, fault_cnt:1621 -[UP] flip: 63, stem: 7907, fault:7768. flip_cnt: 5, stem_cnt: 1381, fault_cnt:1570 -[UP] flip: 76, stem: 7381, fault:8431. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1653 -[UP] flip: 74, stem: 8132, fault:8305. flip_cnt: 5, stem_cnt: 1376, fault_cnt:1594 -[UP] flip: 90, stem: 8087, fault:7205. flip_cnt: 5, stem_cnt: 1381, fault_cnt:1321 -[UP] flip: 0, stem: 7327, fault:6828. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1238 -[UP] flip: 0, stem: 8089, fault:7412. flip_cnt: 0, stem_cnt: 1379, fault_cnt:1340 -[UP] flip: 0, stem: 9448, fault:7564. flip_cnt: 0, stem_cnt: 1380, fault_cnt:1330 -[UP] flip: 31, stem: 8351, fault:8084. flip_cnt: 4, stem_cnt: 1377, fault_cnt:1415 -[UP] flip: 128, stem: 8528, fault:8426. flip_cnt: 7, stem_cnt: 1380, fault_cnt:1506 -[UP] flip: 56, stem: 7382, fault:7402. flip_cnt: 2, stem_cnt: 1386, fault_cnt:1413 -[UP] flip: 140, stem: 7823, fault:9143. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1619 -[UP] flip: 82, stem: 8476, fault:9709. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1664 -[UP] flip: 0, stem: 10179, fault:9617. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1653 -[UP] flip: 100, stem: 9380, fault:9709. flip_cnt: 7, stem_cnt: 1388, fault_cnt:1653 -[UP] flip: 44, stem: 11181, fault:9709. flip_cnt: 2, stem_cnt: 1387, fault_cnt:1652 -[UP] flip: 0, stem: 9306, fault:8209. flip_cnt: 0, stem_cnt: 1382, fault_cnt:1409 -[UP] flip: 93, stem: 8514, fault:9265. flip_cnt: 4, stem_cnt: 1394, fault_cnt:1583 -[UP] flip: 121, stem: 9753, fault:9575. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1668 -[UP] flip: 105, stem: 10292, fault:9513. flip_cnt: 4, stem_cnt: 1396, fault_cnt:1571 -[UP] flip: 96, stem: 8806, fault:9734. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1711 -[UP] flip: 87, stem: 10246, fault:9810. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1717 -[UP] flip: 188, stem: 10562, fault:9959. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1750 -[UP] flip: 221, stem: 11603, fault:9842. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1717 -[UP] flip: 118, stem: 8877, fault:10372. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1777 -[UP] flip: 118, stem: 10057, fault:10315. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1771 -[UP] flip: 110, stem: 9545, fault:10109. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1689 -[UP] flip: 72, stem: 10825, fault:10084. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1681 -[UP] flip: 44, stem: 11607, fault:10071. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1706 -[UP] flip: 48, stem: 12887, fault:10071. flip_cnt: 3, stem_cnt: 1401, fault_cnt:1705 -[UP] flip: 206, stem: 14167, fault:10052. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1700 -[UP] flip: 162, stem: 15227, fault:10019. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1702 -[UP] flip: 107, stem: 12794, fault:7516. flip_cnt: 3, stem_cnt: 1394, fault_cnt:1264 -[UP] flip: 136, stem: 13393, fault:7518. flip_cnt: 4, stem_cnt: 1395, fault_cnt:1298 -[UP] flip: 0, stem: 12121, fault:7130. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1209 -[UP] flip: 76, stem: 13941, fault:7111. flip_cnt: 3, stem_cnt: 1387, fault_cnt:1206 -[UP] flip: 108, stem: 15261, fault:7073. flip_cnt: 2, stem_cnt: 1387, fault_cnt:1203 -[UP] flip: 182, stem: 11894, fault:7567. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1223 -[UP] flip: 197, stem: 13275, fault:7377. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1202 -[UP] flip: 212, stem: 13435, fault:7173. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1169 -[UP] flip: 35, stem: 12251, fault:8328. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1385 -[UP] flip: 60, stem: 13932, fault:8309. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1382 -[UP] flip: 260, stem: 15172, fault:8348. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1383 -[UP] flip: 213, stem: 13869, fault:7733. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1249 -[UP] flip: 70, stem: 12928, fault:8285. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1279 -[UP] flip: 101, stem: 14467, fault:8265. flip_cnt: 3, stem_cnt: 1401, fault_cnt:1274 -[UP] flip: 216, stem: 14566, fault:8359. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1290 -[UP] flip: 75, stem: 13176, fault:7748. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1379 -[UP] flip: 131, stem: 11590, fault:7305. flip_cnt: 4, stem_cnt: 1378, fault_cnt:1239 -[UP] flip: 69, stem: 11188, fault:6528. flip_cnt: 2, stem_cnt: 1380, fault_cnt:1150 -[UP] flip: 66, stem: 11207, fault:6074. flip_cnt: 2, stem_cnt: 1381, fault_cnt:1094 -[UP] flip: 317, stem: 10763, fault:8268. flip_cnt: 7, stem_cnt: 1385, fault_cnt:1412 -[UP] flip: 260, stem: 12603, fault:8268. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1408 -[UP] flip: 52, stem: 14363, fault:8287. flip_cnt: 2, stem_cnt: 1385, fault_cnt:1406 -[UP] flip: 0, stem: 12682, fault:8131. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1360 -[UP] flip: 71, stem: 13743, fault:7980. flip_cnt: 2, stem_cnt: 1385, fault_cnt:1315 -[UP] flip: 0, stem: 12743, fault:8114. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1362 -[UP] flip: 0, stem: 11756, fault:6229. flip_cnt: 0, stem_cnt: 1372, fault_cnt:973 -[UP] flip: 0, stem: 12092, fault:6153. flip_cnt: 0, stem_cnt: 1376, fault_cnt:964 -[UP] flip: 263, stem: 11743, fault:6684. flip_cnt: 7, stem_cnt: 1385, fault_cnt:1054 -[UP] flip: 0, stem: 13080, fault:6684. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1048 -[UP] flip: 99, stem: 12979, fault:7181. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1099 -[UP] flip: 0, stem: 12383, fault:7262. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1106 -[UP] flip: 111, stem: 13685, fault:7247. flip_cnt: 2, stem_cnt: 1383, fault_cnt:1104 -[UP] flip: 109, stem: 11762, fault:8946. flip_cnt: 2, stem_cnt: 1386, fault_cnt:1474 -[UP] flip: 0, stem: 13521, fault:8946. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1474 -[UP] flip: 0, stem: 12538, fault:8742. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1423 -[UP] flip: 269, stem: 14037, fault:8747. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1419 -[UP] flip: 0, stem: 12512, fault:8867. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1416 -[UP] flip: 0, stem: 13973, fault:8867. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1416 -[UP] flip: 99, stem: 14074, fault:8247. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1380 -[UP] flip: 0, stem: 14872, fault:7719. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1316 -[UP] flip: 106, stem: 14253, fault:7595. flip_cnt: 3, stem_cnt: 1395, fault_cnt:1299 -[UP] flip: 79, stem: 13614, fault:8483. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1440 -[UP] flip: 279, stem: 15294, fault:8466. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1437 -[UP] flip: 241, stem: 16954, fault:8296. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1399 -[UP] flip: 83, stem: 15469, fault:8173. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1405 -[UP] flip: 0, stem: 15452, fault:8386. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1422 -[UP] flip: 0, stem: 16952, fault:8386. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1422 -[UP] flip: 0, stem: 15788, fault:8701. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1477 -[UP] flip: 285, stem: 16928, fault:8664. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1473 -[UP] flip: 247, stem: 17686, fault:8706. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1473 -[UP] flip: 404, stem: 17367, fault:7952. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1294 -[UP] flip: 0, stem: 18587, fault:7953. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1294 -[UP] flip: 0, stem: 16098, fault:6502. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1125 -[UP] flip: 0, stem: 15734, fault:7304. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1231 -[UP] flip: 264, stem: 17114, fault:7231. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1224 -[UP] flip: 203, stem: 17294, fault:7707. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1293 -[UP] flip: 354, stem: 18454, fault:7707. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1286 -[UP] flip: 0, stem: 16321, fault:7702. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1274 -[UP] flip: 247, stem: 17079, fault:6907. flip_cnt: 4, stem_cnt: 1389, fault_cnt:1175 -[UP] flip: 0, stem: 18479, fault:6907. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1172 -[UP] flip: 0, stem: 16274, fault:7487. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1253 -[UP] flip: 84, stem: 17594, fault:7487. flip_cnt: 3, stem_cnt: 1394, fault_cnt:1249 -[UP] flip: 59, stem: 14465, fault:7447. flip_cnt: 2, stem_cnt: 1383, fault_cnt:1256 -[UP] flip: 0, stem: 16245, fault:7447. flip_cnt: 0, stem_cnt: 1383, fault_cnt:1256 -[UP] flip: 150, stem: 17242, fault:7751. flip_cnt: 2, stem_cnt: 1386, fault_cnt:1304 -[UP] flip: 302, stem: 15317, fault:7961. flip_cnt: 4, stem_cnt: 1391, fault_cnt:1284 -[UP] flip: 137, stem: 15537, fault:8132. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1274 -[UP] flip: 423, stem: 16698, fault:7904. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1225 -[UP] flip: 205, stem: 18098, fault:7866. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1221 -[UP] flip: 438, stem: 15082, fault:7711. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1205 -[UP] flip: 381, stem: 12617, fault:8463. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1392 -[UP] flip: 473, stem: 12996, fault:8283. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1396 -[UP] flip: 302, stem: 11873, fault:7941. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1385 -[UP] flip: 367, stem: 13031, fault:8036. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1406 -[UP] flip: 356, stem: 14591, fault:8036. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1402 -[UP] flip: 366, stem: 15433, fault:7827. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1381 -[UP] flip: 538, stem: 12998, fault:7713. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1362 -[UP] flip: 473, stem: 14738, fault:7675. flip_cnt: 6, stem_cnt: 1390, fault_cnt:1356 -[UP] flip: 234, stem: 12539, fault:8241. flip_cnt: 4, stem_cnt: 1389, fault_cnt:1434 -[UP] flip: 0, stem: 13599, fault:8113. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1417 -[UP] flip: 559, stem: 14001, fault:8131. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1427 -[UP] flip: 170, stem: 15762, fault:8074. flip_cnt: 2, stem_cnt: 1386, fault_cnt:1424 -[UP] flip: 436, stem: 15101, fault:9081. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1594 -[UP] flip: 434, stem: 14960, fault:9022. flip_cnt: 7, stem_cnt: 1388, fault_cnt:1584 -[UP] flip: 199, stem: 13021, fault:9060. flip_cnt: 2, stem_cnt: 1387, fault_cnt:1590 -[UP] flip: 375, stem: 14761, fault:9041. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1586 -[UP] flip: 240, stem: 16003, fault:9003. flip_cnt: 3, stem_cnt: 1385, fault_cnt:1562 -[UP] flip: 659, stem: 14123, fault:9248. flip_cnt: 7, stem_cnt: 1385, fault_cnt:1593 -[UP] flip: 233, stem: 15745, fault:9229. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1586 -[UP] flip: 344, stem: 17344, fault:9286. flip_cnt: 4, stem_cnt: 1384, fault_cnt:1587 -[UP] flip: 767, stem: 14298, fault:8718. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1537 -[UP] flip: 388, stem: 15002, fault:8490. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1466 -[UP] flip: 582, stem: 16442, fault:8490. flip_cnt: 6, stem_cnt: 1386, fault_cnt:1467 -[UP] flip: 349, stem: 16445, fault:8072. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1448 -[UP] flip: 379, stem: 18305, fault:7977. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1436 -[UP] flip: 489, stem: 15360, fault:7692. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1384 -[UP] flip: 0, stem: 16880, fault:7654. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1380 -[UP] flip: 476, stem: 12733, fault:6697. flip_cnt: 5, stem_cnt: 1375, fault_cnt:1115 -[UP] flip: 270, stem: 13268, fault:6849. flip_cnt: 2, stem_cnt: 1380, fault_cnt:1113 -[UP] flip: 487, stem: 14708, fault:6127. flip_cnt: 5, stem_cnt: 1380, fault_cnt:943 -[UP] flip: 0, stem: 15988, fault:6127. flip_cnt: 0, stem_cnt: 1380, fault_cnt:943 -[UP] flip: 0, stem: 12334, fault:5614. flip_cnt: 0, stem_cnt: 1374, fault_cnt:887 -[UP] flip: 171, stem: 11865, fault:6935. flip_cnt: 2, stem_cnt: 1383, fault_cnt:1119 -[UP] flip: 0, stem: 13385, fault:6935. flip_cnt: 0, stem_cnt: 1383, fault_cnt:1119 -[UP] flip: 726, stem: 14922, fault:6935. flip_cnt: 7, stem_cnt: 1386, fault_cnt:1117 -[UP] flip: 594, stem: 13242, fault:8664. flip_cnt: 7, stem_cnt: 1386, fault_cnt:1302 -[UP] flip: 461, stem: 13061, fault:8474. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1326 -[UP] flip: 270, stem: 14095, fault:9614. flip_cnt: 4, stem_cnt: 1393, fault_cnt:1578 -[UP] flip: 237, stem: 15734, fault:9500. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1569 -[UP] flip: 0, stem: 14136, fault:9310. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1493 -[UP] flip: 268, stem: 14792, fault:9691. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1527 -[UP] flip: 524, stem: 15471, fault:9501. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1494 -[UP] flip: 157, stem: 17072, fault:9482. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1493 -[UP] flip: 0, stem: 16188, fault:8032. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1297 -[UP] flip: 0, stem: 17067, fault:8241. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1310 -[UP] flip: 0, stem: 16827, fault:9704. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1560 -[UP] flip: 611, stem: 17766, fault:9666. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1503 -[UP] flip: 0, stem: 19367, fault:9571. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1473 -[UP] flip: 499, stem: 20947, fault:9571. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1471 -[UP] flip: 135, stem: 22368, fault:9438. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1448 -[UP] flip: 543, stem: 17793, fault:9390. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1394 -[UP] flip: 441, stem: 17393, fault:8459. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1300 -[UP] flip: 597, stem: 17450, fault:9143. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1422 -[UP] flip: 257, stem: 18869, fault:9086. flip_cnt: 4, stem_cnt: 1399, fault_cnt:1444 -[UP] flip: 144, stem: 20269, fault:9542. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1496 -[UP] flip: 156, stem: 17841, fault:9485. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1518 -[UP] flip: 0, stem: 19241, fault:9485. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1518 -[UP] flip: 184, stem: 20102, fault:9485. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1511 -[UP] flip: 99, stem: 16874, fault:8573. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1383 -[UP] flip: 846, stem: 18474, fault:8516. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1379 -[UP] flip: 0, stem: 20114, fault:8478. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1377 -[UP] flip: 120, stem: 17836, fault:8592. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1388 -[UP] flip: 334, stem: 19536, fault:8592. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1389 -[UP] flip: 0, stem: 20495, fault:8060. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1257 -[UP] flip: 591, stem: 20976, fault:8060. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1250 -[UP] flip: 0, stem: 20595, fault:8193. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1232 -[UP] flip: 0, stem: 21136, fault:8839. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1361 -[UP] flip: 591, stem: 19617, fault:8915. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1396 -[UP] flip: 0, stem: 21017, fault:8934. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1398 -[UP] flip: 357, stem: 18936, fault:9808. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1513 -[UP] flip: 0, stem: 20536, fault:9808. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1513 -[UP] flip: 0, stem: 21277, fault:9789. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1512 -[UP] flip: 156, stem: 19811, fault:9751. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1581 -[UP] flip: 141, stem: 20919, fault:9675. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1572 -[UP] flip: 746, stem: 19800, fault:9466. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1556 -[UP] flip: 687, stem: 21181, fault:9390. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1546 -[UP] flip: 623, stem: 22362, fault:9371. flip_cnt: 7, stem_cnt: 1386, fault_cnt:1535 -[UP] flip: 0, stem: 21842, fault:9067. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1493 -[UP] flip: 555, stem: 23463, fault:9067. flip_cnt: 7, stem_cnt: 1385, fault_cnt:1486 -[UP] flip: 0, stem: 21567, fault:9114. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1439 -[UP] flip: 662, stem: 20043, fault:7651. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1224 -[UP] flip: 537, stem: 21643, fault:7613. flip_cnt: 4, stem_cnt: 1385, fault_cnt:1222 -[UP] flip: 393, stem: 22880, fault:8259. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1348 -[UP] flip: 707, stem: 19817, fault:8848. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1433 -[UP] flip: 875, stem: 21217, fault:8791. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1421 -[UP] flip: 330, stem: 19560, fault:8658. flip_cnt: 3, stem_cnt: 1388, fault_cnt:1368 -[UP] flip: 174, stem: 21220, fault:8658. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1365 -[UP] flip: 226, stem: 21998, fault:8677. flip_cnt: 3, stem_cnt: 1390, fault_cnt:1363 -[UP] flip: 382, stem: 19858, fault:7860. flip_cnt: 4, stem_cnt: 1390, fault_cnt:1265 -[UP] flip: 812, stem: 19701, fault:7309. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1179 -[UP] flip: 0, stem: 20121, fault:8753. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1400 -[UP] flip: 825, stem: 21821, fault:8753. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1396 -[UP] flip: 396, stem: 19597, fault:8639. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1311 -[UP] flip: 849, stem: 19518, fault:8126. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1252 -[UP] flip: 618, stem: 20756, fault:8164. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1252 -[UP] flip: 817, stem: 16917, fault:9571. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1487 -[UP] flip: 214, stem: 17694, fault:9590. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1488 -[UP] flip: 858, stem: 19194, fault:9609. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1498 -[UP] flip: 662, stem: 20274, fault:9571. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1494 -[UP] flip: 627, stem: 16893, fault:9153. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1462 -[UP] flip: 260, stem: 18473, fault:9191. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1473 -[UP] flip: 511, stem: 19973, fault:9191. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1470 -[UP] flip: 0, stem: 20292, fault:9343. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1510 -[UP] flip: 0, stem: 21552, fault:9438. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1525 -[UP] flip: 809, stem: 17979, fault:9134. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1566 -[UP] flip: 757, stem: 19239, fault:8963. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1551 -[UP] flip: 0, stem: 19339, fault:9058. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1572 -[UP] flip: 0, stem: 20939, fault:9058. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1572 -[UP] flip: 0, stem: 22299, fault:9058. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1575 -[UP] flip: 1063, stem: 23819, fault:9058. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1571 -[UP] flip: 295, stem: 22017, fault:9077. flip_cnt: 4, stem_cnt: 1391, fault_cnt:1570 -[UP] flip: 608, stem: 22404, fault:8963. flip_cnt: 5, stem_cnt: 1384, fault_cnt:1515 -[UP] flip: 553, stem: 21862, fault:7557. flip_cnt: 7, stem_cnt: 1386, fault_cnt:1329 -[UP] flip: 220, stem: 23423, fault:7557. flip_cnt: 2, stem_cnt: 1385, fault_cnt:1326 -[UP] flip: 0, stem: 22464, fault:7405. flip_cnt: 0, stem_cnt: 1384, fault_cnt:1286 -[UP] flip: 1050, stem: 23004, fault:7595. flip_cnt: 7, stem_cnt: 1384, fault_cnt:1296 -[UP] flip: 574, stem: 23981, fault:8469. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1416 -[UP] flip: 445, stem: 22465, fault:8146. flip_cnt: 2, stem_cnt: 1383, fault_cnt:1320 -[UP] flip: 263, stem: 24066, fault:8146. flip_cnt: 2, stem_cnt: 1382, fault_cnt:1317 -[UP] flip: 745, stem: 23005, fault:6740. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1085 -[UP] flip: 218, stem: 22959, fault:7063. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1123 -[UP] flip: 0, stem: 23517, fault:7063. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1111 -[UP] flip: 715, stem: 21523, fault:6132. flip_cnt: 5, stem_cnt: 1385, fault_cnt:917 -[UP] flip: 0, stem: 23065, fault:5125. flip_cnt: 0, stem_cnt: 1383, fault_cnt:789 -[UP] flip: 762, stem: 22984, fault:6569. flip_cnt: 5, stem_cnt: 1384, fault_cnt:1054 -[UP] flip: 389, stem: 24625, fault:6569. flip_cnt: 4, stem_cnt: 1383, fault_cnt:1046 -[UP] flip: 755, stem: 25325, fault:6683. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1073 -[UP] flip: 885, stem: 26865, fault:6683. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1071 -[UP] flip: 461, stem: 26006, fault:7633. flip_cnt: 5, stem_cnt: 1382, fault_cnt:1247 -[UP] flip: 958, stem: 27746, fault:7671. flip_cnt: 5, stem_cnt: 1382, fault_cnt:1262 -[UP] flip: 468, stem: 24820, fault:7652. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1188 -[UP] flip: 528, stem: 26139, fault:7595. flip_cnt: 4, stem_cnt: 1389, fault_cnt:1187 -[UP] flip: 784, stem: 26021, fault:7785. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1192 -[UP] flip: 1094, stem: 27066, fault:7823. flip_cnt: 7, stem_cnt: 1382, fault_cnt:1188 -[UP] flip: 879, stem: 21936, fault:9153. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1473 -[UP] flip: 270, stem: 23358, fault:9134. flip_cnt: 3, stem_cnt: 1390, fault_cnt:1470 -[UP] flip: 304, stem: 25019, fault:9134. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1469 -[UP] flip: 1021, stem: 26519, fault:9096. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1465 -[UP] flip: 653, stem: 25416, fault:9229. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1518 -[UP] flip: 1144, stem: 25957, fault:7918. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1309 -[UP] flip: 482, stem: 27077, fault:7918. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1306 -[UP] flip: 0, stem: 23959, fault:8051. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1330 -[UP] flip: 939, stem: 23696, fault:7500. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1247 -[UP] flip: 929, stem: 25036, fault:7462. flip_cnt: 6, stem_cnt: 1392, fault_cnt:1243 -[UP] flip: 573, stem: 24495, fault:7576. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1230 -[UP] flip: 476, stem: 26115, fault:7576. flip_cnt: 3, stem_cnt: 1393, fault_cnt:1229 -[UP] flip: 0, stem: 23636, fault:7291. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1122 -[UP] flip: 0, stem: 24876, fault:7291. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1122 -[UP] flip: 926, stem: 25414, fault:8773. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1443 -[UP] flip: 0, stem: 26371, fault:8697. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1437 -[UP] flip: 238, stem: 27293, fault:8678. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1436 -[UP] flip: 860, stem: 23974, fault:7842. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1263 -[UP] flip: 671, stem: 22093, fault:8089. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1344 -[UP] flip: 233, stem: 23392, fault:7994. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1323 -[UP] flip: 884, stem: 24772, fault:7975. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1322 -[UP] flip: 226, stem: 26271, fault:7918. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1309 -[UP] flip: 0, stem: 25828, fault:8925. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1401 -[UP] flip: 0, stem: 25586, fault:8602. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1359 -[UP] flip: 0, stem: 26745, fault:8602. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1361 -[UP] flip: 0, stem: 26943, fault:8678. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1357 -[UP] flip: 0, stem: 28163, fault:8678. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1357 -[UP] flip: 877, stem: 27103, fault:8564. flip_cnt: 4, stem_cnt: 1405, fault_cnt:1317 -[UP] flip: 0, stem: 28443, fault:8564. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1317 -[UP] flip: 375, stem: 26667, fault:8621. flip_cnt: 3, stem_cnt: 1401, fault_cnt:1310 -[UP] flip: 0, stem: 25485, fault:8963. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1361 -[UP] flip: 0, stem: 23184, fault:9761. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1546 -[UP] flip: 358, stem: 24404, fault:9742. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1545 -[UP] flip: 973, stem: 24003, fault:10008. flip_cnt: 4, stem_cnt: 1405, fault_cnt:1576 -[UP] flip: 266, stem: 22868, fault:9856. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1549 -[UP] flip: 424, stem: 21886, fault:9742. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1538 -[UP] flip: 954, stem: 23326, fault:9723. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1539 -[UP] flip: 204, stem: 24766, fault:9723. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1536 -[UP] flip: 929, stem: 24085, fault:9913. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1551 -[UP] flip: 1332, stem: 25046, fault:9894. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1557 -[UP] flip: 0, stem: 26084, fault:9875. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1554 -[UP] flip: 0, stem: 26605, fault:9533. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1489 -[UP] flip: 0, stem: 26725, fault:9533. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1493 -[UP] flip: 0, stem: 27765, fault:9533. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1493 -[UP] flip: 491, stem: 27866, fault:9248. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1412 -[UP] flip: 388, stem: 25642, fault:9001. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1364 -[UP] flip: 0, stem: 20771, fault:9020. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1283 -[UP] flip: 529, stem: 22151, fault:9020. flip_cnt: 3, stem_cnt: 1397, fault_cnt:1280 -[UP] flip: 0, stem: 22332, fault:8507. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1170 -[UP] flip: 991, stem: 23852, fault:8488. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1168 -[UP] flip: 298, stem: 22152, fault:8355. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1119 -[UP] flip: 369, stem: 22474, fault:8488. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1112 -[UP] flip: 264, stem: 23001, fault:8317. flip_cnt: 2, stem_cnt: 1387, fault_cnt:1103 -[UP] flip: 1124, stem: 23958, fault:8735. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1204 -[UP] flip: 681, stem: 21841, fault:7120. flip_cnt: 5, stem_cnt: 1387, fault_cnt:923 -[UP] flip: 996, stem: 21282, fault:7014. flip_cnt: 5, stem_cnt: 1386, fault_cnt:948 -[UP] flip: 1160, stem: 22422, fault:6983. flip_cnt: 7, stem_cnt: 1386, fault_cnt:943 -[UP] flip: 0, stem: 19676, fault:8389. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1256 -[UP] flip: 1207, stem: 21196, fault:8351. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1252 -[UP] flip: 929, stem: 21352, fault:8180. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1233 -[UP] flip: 297, stem: 22792, fault:8104. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1225 -[UP] flip: 912, stem: 21525, fault:9259. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1457 -[UP] flip: 0, stem: 20604, fault:8670. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1332 -[UP] flip: 1011, stem: 18678, fault:8499. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1275 -[UP] flip: 0, stem: 17719, fault:8214. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1220 -[UP] flip: 369, stem: 18920, fault:8214. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1219 -[UP] flip: 1204, stem: 18340, fault:8214. flip_cnt: 6, stem_cnt: 1408, fault_cnt:1215 -[UP] flip: 1030, stem: 16139, fault:8537. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1311 -[UP] flip: 436, stem: 16735, fault:8632. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1343 -[UP] flip: 277, stem: 17895, fault:8670. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1344 -[UP] flip: 904, stem: 19383, fault:8651. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1340 -[UP] flip: 320, stem: 20484, fault:8461. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1330 -[UP] flip: 0, stem: 21824, fault:8461. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1330 -[UP] flip: 1416, stem: 18844, fault:9059. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1438 -[UP] flip: 1021, stem: 19945, fault:9002. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1430 -[UP] flip: 0, stem: 20765, fault:9420. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1464 -[UP] flip: 0, stem: 22046, fault:9420. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1464 -[UP] flip: 802, stem: 23246, fault:9420. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1460 -[UP] flip: 900, stem: 15936, fault:9192. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1436 -[UP] flip: 854, stem: 15015, fault:9515. flip_cnt: 4, stem_cnt: 1393, fault_cnt:1479 -[UP] flip: 1403, stem: 16535, fault:9477. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1475 -[UP] flip: 437, stem: 17936, fault:9420. flip_cnt: 3, stem_cnt: 1392, fault_cnt:1466 -[UP] flip: 1157, stem: 17879, fault:9192. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1438 -[UP] flip: 639, stem: 18899, fault:8793. flip_cnt: 4, stem_cnt: 1389, fault_cnt:1375 -[UP] flip: 983, stem: 20539, fault:8717. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1367 -[UP] flip: 0, stem: 22140, fault:7653. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1174 -[UP] flip: 1043, stem: 22581, fault:7127. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1106 -[UP] flip: 1185, stem: 18780, fault:6932. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1054 -[UP] flip: 0, stem: 18921, fault:6400. flip_cnt: 0, stem_cnt: 1387, fault_cnt:992 -[UP] flip: 1607, stem: 20001, fault:6381. flip_cnt: 7, stem_cnt: 1387, fault_cnt:989 -[UP] flip: 534, stem: 20539, fault:6666. flip_cnt: 4, stem_cnt: 1389, fault_cnt:1034 -[UP] flip: 1313, stem: 18058, fault:7503. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1161 -[UP] flip: 654, stem: 19277, fault:7503. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1158 -[UP] flip: 1042, stem: 20678, fault:7503. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1155 -[UP] flip: 0, stem: 18658, fault:7484. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1140 -[UP] flip: 377, stem: 13660, fault:6610. flip_cnt: 2, stem_cnt: 1388, fault_cnt:931 -[UP] flip: 644, stem: 15141, fault:6629. flip_cnt: 5, stem_cnt: 1387, fault_cnt:938 -[UP] flip: 0, stem: 16501, fault:6629. flip_cnt: 0, stem_cnt: 1387, fault_cnt:931 -[UP] flip: 0, stem: 17861, fault:6629. flip_cnt: 0, stem_cnt: 1387, fault_cnt:931 -[UP] flip: 0, stem: 16259, fault:5831. flip_cnt: 0, stem_cnt: 1389, fault_cnt:862 -[UP] flip: 0, stem: 15379, fault:6553. flip_cnt: 0, stem_cnt: 1389, fault_cnt:963 -[UP] flip: 0, stem: 16878, fault:6572. flip_cnt: 0, stem_cnt: 1390, fault_cnt:964 -[UP] flip: 0, stem: 18338, fault:6496. flip_cnt: 0, stem_cnt: 1390, fault_cnt:955 -[UP] flip: 0, stem: 18596, fault:6420. flip_cnt: 0, stem_cnt: 1392, fault_cnt:929 -[UP] flip: 306, stem: 16517, fault:6576. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1027 -[UP] flip: 467, stem: 17957, fault:6652. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1044 -[UP] flip: 0, stem: 16412, fault:6519. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1037 -[UP] flip: 0, stem: 17512, fault:6519. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1037 -[UP] flip: 923, stem: 16752, fault:6614. flip_cnt: 5, stem_cnt: 1396, fault_cnt:968 -[UP] flip: 0, stem: 17951, fault:6671. flip_cnt: 0, stem_cnt: 1397, fault_cnt:975 -[UP] flip: 969, stem: 15274, fault:8495. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1328 -[UP] flip: 349, stem: 16775, fault:8400. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1322 -[UP] flip: 1192, stem: 17216, fault:8172. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1301 -[UP] flip: 916, stem: 18596, fault:8191. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1299 -[UP] flip: 1033, stem: 20136, fault:8343. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1341 -[UP] flip: 692, stem: 16305, fault:8039. flip_cnt: 3, stem_cnt: 1383, fault_cnt:1322 -[UP] flip: 468, stem: 18084, fault:8039. flip_cnt: 3, stem_cnt: 1384, fault_cnt:1321 -[UP] flip: 737, stem: 19624, fault:8039. flip_cnt: 5, stem_cnt: 1384, fault_cnt:1317 -[UP] flip: 431, stem: 21204, fault:8039. flip_cnt: 3, stem_cnt: 1384, fault_cnt:1314 -[UP] flip: 372, stem: 21985, fault:8001. flip_cnt: 2, stem_cnt: 1383, fault_cnt:1301 -[UP] flip: 708, stem: 19529, fault:8020. flip_cnt: 5, stem_cnt: 1379, fault_cnt:1334 -[UP] flip: 731, stem: 21328, fault:7963. flip_cnt: 4, stem_cnt: 1380, fault_cnt:1333 -[UP] flip: 604, stem: 19995, fault:7393. flip_cnt: 4, stem_cnt: 1373, fault_cnt:1225 -[UP] flip: 346, stem: 21795, fault:6728. flip_cnt: 3, stem_cnt: 1373, fault_cnt:1117 -[UP] flip: 228, stem: 21468, fault:6956. flip_cnt: 2, stem_cnt: 1380, fault_cnt:1174 -[UP] flip: 640, stem: 22968, fault:6956. flip_cnt: 5, stem_cnt: 1380, fault_cnt:1176 -[UP] flip: 0, stem: 21322, fault:5455. flip_cnt: 0, stem_cnt: 1386, fault_cnt:907 -[UP] flip: 1249, stem: 19859, fault:5493. flip_cnt: 5, stem_cnt: 1389, fault_cnt:925 -[UP] flip: 700, stem: 17676, fault:4638. flip_cnt: 2, stem_cnt: 1392, fault_cnt:776 -[UP] flip: 1142, stem: 19054, fault:4638. flip_cnt: 5, stem_cnt: 1394, fault_cnt:773 -[UP] flip: 0, stem: 20173, fault:4543. flip_cnt: 0, stem_cnt: 1395, fault_cnt:759 -[UP] flip: 823, stem: 17297, fault:6158. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1048 -[UP] flip: 1298, stem: 18937, fault:6253. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1076 -[UP] flip: 529, stem: 19899, fault:5759. flip_cnt: 3, stem_cnt: 1389, fault_cnt:1037 -[UP] flip: 0, stem: 21079, fault:5759. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1037 -[UP] flip: 1252, stem: 22338, fault:5702. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1033 -[UP] flip: 0, stem: 21498, fault:5854. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1045 -[UP] flip: 1437, stem: 18696, fault:7184. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1118 -[UP] flip: 305, stem: 17674, fault:8134. flip_cnt: 3, stem_cnt: 1394, fault_cnt:1344 -[UP] flip: 1242, stem: 19114, fault:8134. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1341 -[UP] flip: 0, stem: 18213, fault:8248. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1411 -[UP] flip: 1549, stem: 19452, fault:8248. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1407 -[UP] flip: 947, stem: 17913, fault:8362. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1405 -[UP] flip: 351, stem: 18898, fault:8248. flip_cnt: 2, stem_cnt: 1390, fault_cnt:1339 -[UP] flip: 0, stem: 20380, fault:8343. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1352 -[UP] flip: 316, stem: 19780, fault:7944. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1312 -[UP] flip: 0, stem: 20618, fault:7887. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1308 -[UP] flip: 1124, stem: 22218, fault:7849. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1305 -[UP] flip: 749, stem: 23478, fault:7830. flip_cnt: 4, stem_cnt: 1390, fault_cnt:1299 -[UP] flip: 894, stem: 24437, fault:7792. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1289 -[UP] flip: 309, stem: 17973, fault:7450. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1236 -[UP] flip: 1413, stem: 18993, fault:7450. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1237 -[UP] flip: 513, stem: 20314, fault:7450. flip_cnt: 4, stem_cnt: 1394, fault_cnt:1257 -[UP] flip: 0, stem: 21534, fault:7412. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1251 -[UP] flip: 0, stem: 17730, fault:7754. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1254 -[UP] flip: 1049, stem: 18610, fault:7697. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1251 -[UP] flip: 0, stem: 19830, fault:7583. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1242 -[UP] flip: 1553, stem: 20930, fault:7583. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1238 -[UP] flip: 1514, stem: 22430, fault:7564. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1236 -[UP] flip: 0, stem: 19513, fault:7241. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1187 -[UP] flip: 1575, stem: 20512, fault:7222. flip_cnt: 6, stem_cnt: 1396, fault_cnt:1183 -[UP] flip: 1045, stem: 20970, fault:7184. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1176 -[UP] flip: 0, stem: 22270, fault:6348. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1044 -[UP] flip: 411, stem: 20041, fault:9407. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1555 -[UP] flip: 1186, stem: 21341, fault:9369. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1552 -[UP] flip: 0, stem: 22661, fault:9369. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1552 -[UP] flip: 769, stem: 23762, fault:9369. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1550 -[UP] flip: 1111, stem: 25242, fault:9369. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1547 -[UP] flip: 1034, stem: 26402, fault:9369. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1544 -[UP] flip: 0, stem: 26301, fault:8533. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1377 -[UP] flip: 1507, stem: 23125, fault:8628. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1386 -[UP] flip: 763, stem: 21021, fault:8571. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1372 -[UP] flip: 1291, stem: 22961, fault:8571. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1373 -[UP] flip: 1512, stem: 22522, fault:8799. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1412 -[UP] flip: 0, stem: 23381, fault:8761. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1409 -[UP] flip: 0, stem: 22842, fault:8761. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1409 -[UP] flip: 0, stem: 24183, fault:8761. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1409 -[UP] flip: 0, stem: 22440, fault:9331. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1515 -[UP] flip: 792, stem: 19197, fault:9426. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1545 -[UP] flip: 1270, stem: 19075, fault:9768. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1572 -[UP] flip: 293, stem: 19177, fault:9787. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1572 -[UP] flip: 0, stem: 20397, fault:9787. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1572 -[UP] flip: 786, stem: 21618, fault:9768. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1570 -[UP] flip: 1264, stem: 18620, fault:9673. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1538 -[UP] flip: 596, stem: 19697, fault:9673. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1539 -[UP] flip: 0, stem: 20917, fault:9635. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1534 -[UP] flip: 810, stem: 20977, fault:9597. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1531 -[UP] flip: 360, stem: 22018, fault:9540. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1528 -[UP] flip: 1470, stem: 22558, fault:9711. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1560 -[UP] flip: 597, stem: 23759, fault:9692. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1557 -[UP] flip: 0, stem: 24660, fault:9559. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1529 -[UP] flip: 1319, stem: 24222, fault:8799. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1370 -[UP] flip: 1013, stem: 25502, fault:8723. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1358 -[UP] flip: 0, stem: 23180, fault:8362. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1315 -[UP] flip: 1692, stem: 23880, fault:8400. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1388 -[UP] flip: 1488, stem: 25060, fault:8381. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1369 -[UP] flip: 1689, stem: 22185, fault:7754. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1273 -[UP] flip: 1102, stem: 23484, fault:7735. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1275 -[UP] flip: 785, stem: 24804, fault:7697. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1281 -[UP] flip: 0, stem: 24424, fault:7716. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1266 -[UP] flip: 0, stem: 25624, fault:7716. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1266 -[UP] flip: 0, stem: 26924, fault:7716. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1266 -[UP] flip: 440, stem: 22404, fault:7602. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1302 -[UP] flip: 448, stem: 23302, fault:7640. flip_cnt: 3, stem_cnt: 1406, fault_cnt:1338 -[UP] flip: 1206, stem: 22962, fault:8324. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1509 -[UP] flip: 891, stem: 23841, fault:8305. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1505 -[UP] flip: 364, stem: 20359, fault:8172. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1467 -[UP] flip: 530, stem: 21577, fault:8172. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1468 -[UP] flip: 1148, stem: 22335, fault:8153. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1476 -[UP] flip: 840, stem: 21397, fault:6766. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1203 -[UP] flip: 0, stem: 22457, fault:6633. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1171 -[UP] flip: 1198, stem: 23077, fault:5379. flip_cnt: 4, stem_cnt: 1411, fault_cnt:899 -[UP] flip: 327, stem: 23578, fault:5379. flip_cnt: 2, stem_cnt: 1410, fault_cnt:912 -[UP] flip: 1754, stem: 22199, fault:5284. flip_cnt: 5, stem_cnt: 1409, fault_cnt:902 -[UP] flip: 1044, stem: 23520, fault:5284. flip_cnt: 4, stem_cnt: 1408, fault_cnt:900 -[UP] flip: 0, stem: 23958, fault:5550. flip_cnt: 0, stem_cnt: 1410, fault_cnt:917 -[UP] flip: 0, stem: 25278, fault:5550. flip_cnt: 0, stem_cnt: 1410, fault_cnt:917 -[UP] flip: 351, stem: 22935, fault:6329. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1112 -[UP] flip: 558, stem: 24234, fault:6386. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1114 -[UP] flip: 1150, stem: 22291, fault:7355. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1323 -[UP] flip: 678, stem: 23531, fault:7013. flip_cnt: 3, stem_cnt: 1417, fault_cnt:1261 -[UP] flip: 1358, stem: 24791, fault:7013. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1258 -[UP] flip: 515, stem: 24531, fault:6937. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1251 -[UP] flip: 812, stem: 25112, fault:6899. flip_cnt: 3, stem_cnt: 1416, fault_cnt:1250 -[UP] flip: 675, stem: 25249, fault:6937. flip_cnt: 3, stem_cnt: 1419, fault_cnt:1255 -[UP] flip: 2010, stem: 24372, fault:9122. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1556 -[UP] flip: 1608, stem: 25072, fault:9084. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1548 -[UP] flip: 1718, stem: 26111, fault:9065. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1537 -[UP] flip: 1879, stem: 26036, fault:8894. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1478 -[UP] flip: 0, stem: 27257, fault:8894. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1478 -[UP] flip: 197, stem: 28836, fault:8875. flip_cnt: 1, stem_cnt: 1412, fault_cnt:1480 -[UP] flip: 1220, stem: 29356, fault:8837. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1477 -[UP] flip: 952, stem: 25538, fault:8172. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1417 -[UP] flip: 725, stem: 25939, fault:8172. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1394 -[UP] flip: 1409, stem: 26840, fault:8172. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1377 -[UP] flip: 0, stem: 27580, fault:8172. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1377 -[UP] flip: 1823, stem: 28221, fault:8115. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1366 -[UP] flip: 1110, stem: 27523, fault:8951. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1506 -[UP] flip: 1033, stem: 28422, fault:8894. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1504 -[UP] flip: 0, stem: 29401, fault:8894. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1512 -[UP] flip: 1173, stem: 27859, fault:8704. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1511 -[UP] flip: 520, stem: 29320, fault:6614. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1220 -[UP] flip: 1552, stem: 28119, fault:6671. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1235 -[UP] flip: 1929, stem: 28760, fault:6633. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1230 -[UP] flip: 612, stem: 29700, fault:6633. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1228 -[UP] flip: 0, stem: 29500, fault:6633. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1227 -[UP] flip: 784, stem: 29120, fault:7279. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1385 -[UP] flip: 0, stem: 27459, fault:7279. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1364 -[UP] flip: 0, stem: 28099, fault:7279. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1364 -[UP] flip: 0, stem: 27081, fault:7089. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1327 -[UP] flip: 377, stem: 30741, fault:7089. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1326 -[UP] flip: 395, stem: 31640, fault:6994. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1291 -[UP] flip: 787, stem: 29401, fault:6823. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1236 -[UP] flip: 578, stem: 26440, fault:7165. flip_cnt: 3, stem_cnt: 1408, fault_cnt:1332 -[UP] flip: 1520, stem: 25378, fault:7203. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1339 -[UP] flip: 768, stem: 26638, fault:7203. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1337 -[UP] flip: 0, stem: 27720, fault:7013. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1318 -[UP] flip: 997, stem: 28181, fault:7070. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1323 -[UP] flip: 0, stem: 27288, fault:7279. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1341 -[UP] flip: 1971, stem: 26607, fault:7412. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1367 -[UP] flip: 0, stem: 25427, fault:7412. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1367 -[UP] flip: 2045, stem: 21655, fault:8077. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1482 -[UP] flip: 1483, stem: 22513, fault:8096. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1483 -[UP] flip: 1620, stem: 23753, fault:8058. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1477 -[UP] flip: 0, stem: 24733, fault:8058. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1477 -[UP] flip: 1359, stem: 25773, fault:8172. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1485 -[UP] flip: 1066, stem: 27013, fault:8001. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1456 -[UP] flip: 0, stem: 28053, fault:8001. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1454 -[UP] flip: 834, stem: 29413, fault:8001. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1448 -[UP] flip: 1539, stem: 30713, fault:7982. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1445 -[UP] flip: 1171, stem: 27378, fault:6918. flip_cnt: 3, stem_cnt: 1410, fault_cnt:1169 -[UP] flip: 0, stem: 27378, fault:6861. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1162 -[UP] flip: 0, stem: 27314, fault:7051. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1183 -[UP] flip: 1876, stem: 28394, fault:7032. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1181 -[UP] flip: 2156, stem: 28695, fault:6975. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1173 -[UP] flip: 539, stem: 29756, fault:6918. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1170 -[UP] flip: 1600, stem: 29858, fault:6823. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1150 -[UP] flip: 0, stem: 30858, fault:6823. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1138 -[UP] flip: 0, stem: 30599, fault:6823. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1138 -[UP] flip: 1490, stem: 24135, fault:7716. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1265 -[UP] flip: 0, stem: 25416, fault:8248. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1379 -[UP] flip: 0, stem: 26756, fault:8248. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1379 -[UP] flip: 655, stem: 28016, fault:8248. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1377 -[UP] flip: 0, stem: 29116, fault:8286. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1380 -[UP] flip: 0, stem: 30377, fault:8286. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1380 -[UP] flip: 1378, stem: 29975, fault:7545. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1289 -[UP] flip: 1755, stem: 27466, fault:8400. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1417 -[UP] flip: 0, stem: 28245, fault:8780. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1487 -[UP] flip: 1349, stem: 28845, fault:8761. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1485 -[UP] flip: 2082, stem: 30005, fault:8704. flip_cnt: 7, stem_cnt: 1423, fault_cnt:1481 -[UP] flip: 1625, stem: 30966, fault:8495. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1444 -[UP] flip: 804, stem: 31966, fault:8476. flip_cnt: 3, stem_cnt: 1422, fault_cnt:1443 -[UP] flip: 999, stem: 31627, fault:8457. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1442 -[UP] flip: 453, stem: 32928, fault:8457. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1439 -[UP] flip: 0, stem: 33827, fault:8457. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1439 -[UP] flip: 908, stem: 31286, fault:8381. flip_cnt: 3, stem_cnt: 1422, fault_cnt:1427 -[UP] flip: 352, stem: 32306, fault:8286. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1411 -[UP] flip: 1768, stem: 32226, fault:8305. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1416 -[UP] flip: 647, stem: 33226, fault:8305. flip_cnt: 3, stem_cnt: 1422, fault_cnt:1415 -[UP] flip: 1597, stem: 33966, fault:8343. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1417 -[UP] flip: 1335, stem: 30846, fault:8362. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1421 -[UP] flip: 2176, stem: 32086, fault:8381. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1425 -[UP] flip: 272, stem: 20468, fault:6766. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1110 -[UP] flip: 0, stem: 21547, fault:6766. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1110 -[UP] flip: 0, stem: 21529, fault:6690. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1096 -[UP] flip: 0, stem: 22429, fault:6690. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1096 -[UP] flip: 319, stem: 23909, fault:6671. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1093 -[UP] flip: 0, stem: 22269, fault:6557. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1099 -[UP] flip: 0, stem: 22511, fault:6405. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1048 -[UP] flip: 452, stem: 23714, fault:6272. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1034 -[UP] flip: 0, stem: 23452, fault:6424. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1046 -[UP] flip: 458, stem: 24533, fault:6405. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1043 -[UP] flip: 1298, stem: 25332, fault:6386. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1038 -[UP] flip: 0, stem: 25571, fault:6500. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1033 -[UP] flip: 1700, stem: 27151, fault:6462. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1030 -[UP] flip: 0, stem: 26373, fault:6462. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1024 -[UP] flip: 0, stem: 27553, fault:6462. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1024 -[UP] flip: 1826, stem: 25533, fault:6424. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1015 -[UP] flip: 0, stem: 26693, fault:6424. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1015 -[UP] flip: 1699, stem: 25633, fault:6348. flip_cnt: 7, stem_cnt: 1415, fault_cnt:998 -[UP] flip: 0, stem: 26735, fault:6348. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1006 -[UP] flip: 2265, stem: 27635, fault:6310. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1002 -[UP] flip: 324, stem: 19714, fault:8001. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1306 -[UP] flip: 509, stem: 20974, fault:7944. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1303 -[UP] flip: 1658, stem: 21894, fault:7944. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1300 -[UP] flip: 584, stem: 23234, fault:7925. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1298 -[UP] flip: 0, stem: 24614, fault:7925. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1298 -[UP] flip: 0, stem: 25874, fault:7925. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1298 -[UP] flip: 0, stem: 26294, fault:7925. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1298 -[UP] flip: 0, stem: 23895, fault:7431. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1201 -[UP] flip: 918, stem: 23995, fault:7944. flip_cnt: 3, stem_cnt: 1413, fault_cnt:1246 -[UP] flip: 351, stem: 25256, fault:7944. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1243 -[UP] flip: 533, stem: 26036, fault:7906. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1240 -[UP] flip: 464, stem: 27176, fault:7906. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1239 -[UP] flip: 1268, stem: 28457, fault:7906. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1237 -[UP] flip: 1237, stem: 27556, fault:7944. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1227 -[UP] flip: 2222, stem: 28616, fault:7944. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1228 -[UP] flip: 1065, stem: 23590, fault:8913. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1426 -[UP] flip: 1623, stem: 24110, fault:8951. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1445 -[UP] flip: 0, stem: 24430, fault:8932. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1450 -[UP] flip: 2108, stem: 24649, fault:9122. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1470 -[UP] flip: 0, stem: 25689, fault:9122. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1470 -[UP] flip: 385, stem: 26870, fault:9103. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1467 -[UP] flip: 2106, stem: 27770, fault:9103. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1468 -[UP] flip: 1905, stem: 21991, fault:9065. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1456 -[UP] flip: 0, stem: 23052, fault:9065. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1454 -[UP] flip: 1251, stem: 24472, fault:9046. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1452 -[UP] flip: 1768, stem: 25311, fault:8989. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1453 -[UP] flip: 2127, stem: 21990, fault:9141. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1481 -[UP] flip: 2149, stem: 22871, fault:9103. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1480 -[UP] flip: 0, stem: 24191, fault:9065. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1474 -[UP] flip: 1465, stem: 20535, fault:8704. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1408 -[UP] flip: 377, stem: 21734, fault:8704. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1409 -[UP] flip: 409, stem: 22974, fault:8704. flip_cnt: 3, stem_cnt: 1414, fault_cnt:1408 -[UP] flip: 302, stem: 24214, fault:8647. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1405 -[UP] flip: 0, stem: 24895, fault:8780. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1414 -[UP] flip: 2828, stem: 23472, fault:8647. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1444 -[UP] flip: 1356, stem: 24591, fault:8647. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1446 -[UP] flip: 0, stem: 25871, fault:8647. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1453 -[UP] flip: 1191, stem: 26871, fault:8628. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1450 -[UP] flip: 1250, stem: 27132, fault:7336. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1183 -[UP] flip: 0, stem: 26792, fault:7336. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1179 -[UP] flip: 0, stem: 28112, fault:7336. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1179 -[UP] flip: 579, stem: 23732, fault:6823. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1070 -[UP] flip: 1722, stem: 23909, fault:6804. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1059 -[UP] flip: 1995, stem: 24949, fault:6804. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1053 -[UP] flip: 0, stem: 25109, fault:6785. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1039 -[UP] flip: 1402, stem: 24428, fault:6861. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1046 -[UP] flip: 2030, stem: 24387, fault:6804. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1043 -[UP] flip: 1863, stem: 25309, fault:6785. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1041 -[UP] flip: 1233, stem: 26091, fault:6785. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1039 -[UP] flip: 0, stem: 26694, fault:6652. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1025 -[UP] flip: 0, stem: 25395, fault:6462. flip_cnt: 0, stem_cnt: 1413, fault_cnt:996 -[UP] flip: 1769, stem: 26115, fault:6424. flip_cnt: 7, stem_cnt: 1413, fault_cnt:989 -[UP] flip: 2621, stem: 27475, fault:6424. flip_cnt: 7, stem_cnt: 1413, fault_cnt:985 -[UP] flip: 1730, stem: 24254, fault:6861. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1055 -[UP] flip: 503, stem: 21734, fault:6880. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1048 -[UP] flip: 1458, stem: 22692, fault:6880. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1052 -[UP] flip: 487, stem: 20872, fault:6918. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1045 -[UP] flip: 1008, stem: 21575, fault:6842. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1042 -[UP] flip: 425, stem: 22654, fault:6823. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1040 -[UP] flip: 567, stem: 23555, fault:6804. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1038 -[UP] flip: 857, stem: 24415, fault:6804. flip_cnt: 3, stem_cnt: 1413, fault_cnt:1041 -[UP] flip: 574, stem: 25495, fault:6804. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1037 -[UP] flip: 2081, stem: 20455, fault:6766. flip_cnt: 6, stem_cnt: 1413, fault_cnt:1033 -[UP] flip: 1117, stem: 20172, fault:6709. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1023 -[UP] flip: 1178, stem: 20369, fault:7849. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1296 -[UP] flip: 1869, stem: 21448, fault:7887. flip_cnt: 4, stem_cnt: 1420, fault_cnt:1296 -[UP] flip: 706, stem: 19574, fault:8362. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1402 -[UP] flip: 2817, stem: 18674, fault:8343. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1394 -[UP] flip: 1623, stem: 20156, fault:8324. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1392 -[UP] flip: 1023, stem: 20836, fault:8324. flip_cnt: 3, stem_cnt: 1412, fault_cnt:1389 -[UP] flip: 1087, stem: 21773, fault:8400. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1393 -[UP] flip: 1792, stem: 21653, fault:8381. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1379 -[UP] flip: 1092, stem: 22154, fault:8381. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1373 -[UP] flip: 711, stem: 22697, fault:8172. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1339 -[UP] flip: 618, stem: 23077, fault:8153. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1337 -[UP] flip: 716, stem: 23357, fault:8134. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1336 -[UP] flip: 703, stem: 24678, fault:8077. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1333 -[UP] flip: 578, stem: 21020, fault:7184. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1084 -[UP] flip: 0, stem: 21897, fault:7184. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1084 -[UP] flip: 0, stem: 22555, fault:7184. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1098 -[UP] flip: 0, stem: 17795, fault:6367. flip_cnt: 0, stem_cnt: 1413, fault_cnt:901 -[UP] flip: 867, stem: 17993, fault:7887. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1219 -[UP] flip: 1685, stem: 19393, fault:7849. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1216 -[UP] flip: 1966, stem: 20473, fault:7716. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1180 -[UP] flip: 1068, stem: 21573, fault:7697. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1179 -[UP] flip: 2152, stem: 20011, fault:7241. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1114 -[UP] flip: 650, stem: 21452, fault:7184. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1111 -[UP] flip: 1625, stem: 22093, fault:7146. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1107 -[UP] flip: 1893, stem: 19980, fault:6538. flip_cnt: 5, stem_cnt: 1408, fault_cnt:929 -[UP] flip: 2540, stem: 20200, fault:6538. flip_cnt: 7, stem_cnt: 1408, fault_cnt:925 -[UP] flip: 0, stem: 19977, fault:7602. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1152 -[UP] flip: 1918, stem: 20859, fault:6994. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1037 -[UP] flip: 2340, stem: 22279, fault:6975. flip_cnt: 6, stem_cnt: 1409, fault_cnt:1030 -[UP] flip: 2161, stem: 19041, fault:5740. flip_cnt: 5, stem_cnt: 1407, fault_cnt:785 -[UP] flip: 0, stem: 19743, fault:3859. flip_cnt: 0, stem_cnt: 1405, fault_cnt:572 -[UP] flip: 0, stem: 18082, fault:3859. flip_cnt: 0, stem_cnt: 1406, fault_cnt:567 -[UP] flip: 2765, stem: 19102, fault:3821. flip_cnt: 7, stem_cnt: 1406, fault_cnt:563 -[UP] flip: 0, stem: 20522, fault:3688. flip_cnt: 0, stem_cnt: 1406, fault_cnt:549 -[UP] flip: 0, stem: 24563, fault:3688. flip_cnt: 0, stem_cnt: 1405, fault_cnt:549 -[UP] flip: 1743, stem: 19463, fault:6519. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1100 -[UP] flip: 2004, stem: 20863, fault:6462. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1096 -[UP] flip: 1225, stem: 21825, fault:6462. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1081 -[UP] flip: 2309, stem: 20683, fault:6424. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1093 -[UP] flip: 723, stem: 21621, fault:6481. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1088 -[UP] flip: 2534, stem: 21262, fault:6557. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1120 -[UP] flip: 0, stem: 22622, fault:6614. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1123 -[UP] flip: 360, stem: 22405, fault:6405. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1096 -[UP] flip: 2312, stem: 22626, fault:6405. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1083 -[UP] flip: 0, stem: 21764, fault:7621. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1261 -[UP] flip: 1140, stem: 21962, fault:7564. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1265 -[UP] flip: 374, stem: 23023, fault:7545. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1272 -[UP] flip: 2559, stem: 24364, fault:7545. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1270 -[UP] flip: 0, stem: 28363, fault:7621. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1273 -[UP] flip: 1361, stem: 27962, fault:7621. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1279 -[UP] flip: 796, stem: 29162, fault:7602. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1282 -[UP] flip: 0, stem: 26756, fault:8609. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1376 -[UP] flip: 1122, stem: 28137, fault:8609. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1374 -[UP] flip: 1246, stem: 23740, fault:5626. flip_cnt: 2, stem_cnt: 1408, fault_cnt:899 -[UP] flip: 0, stem: 23601, fault:5550. flip_cnt: 0, stem_cnt: 1407, fault_cnt:894 -[UP] flip: 0, stem: 23781, fault:5550. flip_cnt: 0, stem_cnt: 1407, fault_cnt:894 -[UP] flip: 519, stem: 24841, fault:5531. flip_cnt: 2, stem_cnt: 1407, fault_cnt:891 -[UP] flip: 1841, stem: 25457, fault:5569. flip_cnt: 5, stem_cnt: 1411, fault_cnt:895 -[UP] flip: 2900, stem: 24288, fault:5702. flip_cnt: 7, stem_cnt: 1400, fault_cnt:903 -[UP] flip: 0, stem: 21024, fault:8020. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1235 -[UP] flip: 3131, stem: 22384, fault:8020. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1231 -[UP] flip: 0, stem: 23624, fault:8020. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1231 -[UP] flip: 545, stem: 22641, fault:8343. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1283 -[UP] flip: 345, stem: 23421, fault:8210. flip_cnt: 1, stem_cnt: 1407, fault_cnt:1265 -[UP] flip: 2029, stem: 24341, fault:8229. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1267 -[UP] flip: 1567, stem: 25761, fault:8248. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1269 -[UP] flip: 543, stem: 23681, fault:8381. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1275 -[UP] flip: 448, stem: 24284, fault:8400. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1274 -[UP] flip: 1435, stem: 25565, fault:8362. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1258 -[UP] flip: 2197, stem: 26985, fault:8343. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1250 -[UP] flip: 0, stem: 17858, fault:9331. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1447 -[UP] flip: 718, stem: 19138, fault:9331. flip_cnt: 3, stem_cnt: 1410, fault_cnt:1446 -[UP] flip: 1080, stem: 20518, fault:9312. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1444 -[UP] flip: 801, stem: 21359, fault:8837. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1350 -[UP] flip: 0, stem: 19559, fault:5930. flip_cnt: 0, stem_cnt: 1409, fault_cnt:980 -[UP] flip: 1706, stem: 19698, fault:7450. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1166 -[UP] flip: 2481, stem: 20380, fault:7659. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1189 -[UP] flip: 2564, stem: 20220, fault:7640. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1194 -[UP] flip: 1497, stem: 16315, fault:10376. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1658 -[UP] flip: 403, stem: 17555, fault:10376. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1655 -[UP] flip: 567, stem: 18553, fault:10509. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1672 -[UP] flip: 1124, stem: 19773, fault:10490. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1671 -[UP] flip: 1926, stem: 20853, fault:10490. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1669 -[UP] flip: 2564, stem: 21973, fault:10490. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1670 -[UP] flip: 617, stem: 20288, fault:11041. flip_cnt: 3, stem_cnt: 1420, fault_cnt:1755 -[UP] flip: 1954, stem: 21308, fault:11022. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1751 -[UP] flip: 2225, stem: 22648, fault:10775. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1723 -[UP] flip: 934, stem: 23587, fault:10832. flip_cnt: 4, stem_cnt: 1421, fault_cnt:1722 -[UP] flip: 2016, stem: 23566, fault:10813. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1726 -[UP] flip: 1024, stem: 24526, fault:10661. flip_cnt: 3, stem_cnt: 1422, fault_cnt:1718 -[UP] flip: 961, stem: 25467, fault:10756. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1740 -[UP] flip: 397, stem: 22535, fault:10129. flip_cnt: 1, stem_cnt: 1413, fault_cnt:1662 -[UP] flip: 1769, stem: 23435, fault:10129. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1658 -[UP] flip: 1241, stem: 24375, fault:10129. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1655 -[UP] flip: 2226, stem: 25236, fault:9977. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1595 -[UP] flip: 1134, stem: 19995, fault:9103. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1428 -[UP] flip: 668, stem: 21456, fault:9977. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1569 -[UP] flip: 0, stem: 22036, fault:9977. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1569 -[UP] flip: 1575, stem: 22976, fault:9939. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1566 -[UP] flip: 1237, stem: 23232, fault:9996. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1573 -[UP] flip: 0, stem: 24132, fault:9996. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1573 -[UP] flip: 0, stem: 17330, fault:10186. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1624 -[UP] flip: 1700, stem: 18168, fault:10243. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1631 -[UP] flip: 1327, stem: 17628, fault:10490. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1655 -[UP] flip: 2356, stem: 16584, fault:10509. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1683 -[UP] flip: 1867, stem: 17284, fault:10433. flip_cnt: 4, stem_cnt: 1424, fault_cnt:1657 -[UP] flip: 1661, stem: 18065, fault:10433. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1655 -[UP] flip: 2094, stem: 19085, fault:10376. flip_cnt: 7, stem_cnt: 1423, fault_cnt:1648 -[UP] flip: 1431, stem: 19925, fault:10376. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1645 -[UP] flip: 0, stem: 20785, fault:10186. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1615 -[UP] flip: 1958, stem: 21785, fault:10167. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1613 -[UP] flip: 862, stem: 21489, fault:9084. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1432 -[UP] flip: 0, stem: 21629, fault:9084. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1432 -[UP] flip: 1742, stem: 21430, fault:8932. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1421 -[UP] flip: 443, stem: 21770, fault:8913. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1418 -[UP] flip: 0, stem: 22970, fault:8913. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1416 -[UP] flip: 1809, stem: 23771, fault:8894. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1414 -[UP] flip: 2692, stem: 18475, fault:5873. flip_cnt: 7, stem_cnt: 1413, fault_cnt:999 -[UP] flip: 0, stem: 19054, fault:5645. flip_cnt: 0, stem_cnt: 1414, fault_cnt:989 -[UP] flip: 0, stem: 15836, fault:5740. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1020 -[UP] flip: 0, stem: 16976, fault:5740. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1020 -[UP] flip: 2658, stem: 18076, fault:5721. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1016 -[UP] flip: 0, stem: 19439, fault:5683. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1002 -[UP] flip: 1914, stem: 20939, fault:5664. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1000 -[UP] flip: 1967, stem: 18697, fault:5645. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1004 -[UP] flip: 0, stem: 18398, fault:4771. flip_cnt: 0, stem_cnt: 1410, fault_cnt:813 -[UP] flip: 1232, stem: 19598, fault:4771. flip_cnt: 4, stem_cnt: 1410, fault_cnt:811 -[UP] flip: 0, stem: 20317, fault:6405. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1050 -[UP] flip: 2507, stem: 22317, fault:6367. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1046 -[UP] flip: 2707, stem: 23417, fault:4733. flip_cnt: 7, stem_cnt: 1411, fault_cnt:813 -[UP] flip: 635, stem: 15404, fault:5626. flip_cnt: 3, stem_cnt: 1404, fault_cnt:907 -[UP] flip: 618, stem: 17063, fault:5683. flip_cnt: 2, stem_cnt: 1405, fault_cnt:910 -[UP] flip: 1650, stem: 16346, fault:6310. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1000 -[UP] flip: 640, stem: 16484, fault:6253. flip_cnt: 2, stem_cnt: 1404, fault_cnt:997 -[UP] flip: 0, stem: 17984, fault:6253. flip_cnt: 0, stem_cnt: 1404, fault_cnt:997 -[UP] flip: 0, stem: 16944, fault:6538. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1017 -[UP] flip: 0, stem: 18183, fault:7583. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1191 -[UP] flip: 2397, stem: 19422, fault:7602. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1193 -[UP] flip: 799, stem: 18864, fault:8096. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1227 -[UP] flip: 0, stem: 20204, fault:8096. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1227 -[UP] flip: 0, stem: 21584, fault:8096. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1227 -[UP] flip: 1955, stem: 17561, fault:7621. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1153 -[UP] flip: 2337, stem: 21421, fault:7602. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1149 -[UP] flip: 0, stem: 19518, fault:7659. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1171 -[UP] flip: 1223, stem: 20678, fault:7659. flip_cnt: 3, stem_cnt: 1410, fault_cnt:1170 -[UP] flip: 0, stem: 17297, fault:7659. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1150 -[UP] flip: 1980, stem: 18435, fault:7659. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1153 -[UP] flip: 2142, stem: 19475, fault:7659. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1156 -[UP] flip: 2763, stem: 19076, fault:7621. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1144 -[UP] flip: 1000, stem: 19755, fault:7507. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1136 -[UP] flip: 355, stem: 20476, fault:7507. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1137 -[UP] flip: 1785, stem: 22056, fault:7602. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1147 -[UP] flip: 0, stem: 21594, fault:7640. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1177 -[UP] flip: 602, stem: 21016, fault:7621. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1171 -[UP] flip: 0, stem: 24336, fault:7621. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1171 -[UP] flip: 702, stem: 25576, fault:7621. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1168 -[UP] flip: 3057, stem: 26096, fault:7602. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1163 -[UP] flip: 880, stem: 25697, fault:7678. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1168 -[UP] flip: 2597, stem: 26116, fault:7678. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1172 -[UP] flip: 1152, stem: 26897, fault:7507. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1146 -[UP] flip: 878, stem: 27878, fault:7450. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1143 -[UP] flip: 0, stem: 18955, fault:8666. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1327 -[UP] flip: 0, stem: 20595, fault:8666. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1327 -[UP] flip: 0, stem: 21895, fault:8666. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1327 -[UP] flip: 1695, stem: 22135, fault:8780. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1345 -[UP] flip: 0, stem: 18737, fault:8438. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1292 -[UP] flip: 983, stem: 20417, fault:8438. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1290 -[UP] flip: 416, stem: 21738, fault:8362. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1285 -[UP] flip: 0, stem: 22398, fault:8362. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1281 -[UP] flip: 0, stem: 21060, fault:7317. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1179 -[UP] flip: 1312, stem: 21900, fault:7336. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1181 -[UP] flip: 479, stem: 23081, fault:7393. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1234 -[UP] flip: 714, stem: 18840, fault:7526. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1254 -[UP] flip: 2142, stem: 20220, fault:7488. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1254 -[UP] flip: 0, stem: 19297, fault:10243. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1637 -[UP] flip: 2995, stem: 20497, fault:10243. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1633 -[UP] flip: 0, stem: 19722, fault:9236. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1486 -[UP] flip: 3397, stem: 21061, fault:9198. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1482 -[UP] flip: 0, stem: 20238, fault:9787. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1599 -[UP] flip: 0, stem: 21398, fault:9787. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1599 -[UP] flip: 1760, stem: 21398, fault:9768. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1600 -[UP] flip: 1458, stem: 22196, fault:9768. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1606 -[UP] flip: 3283, stem: 23696, fault:9768. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1602 -[UP] flip: 1725, stem: 21574, fault:9578. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1507 -[UP] flip: 716, stem: 22894, fault:9540. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1495 -[UP] flip: 1994, stem: 22513, fault:9540. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1493 -[UP] flip: 0, stem: 23893, fault:9407. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1475 -[UP] flip: 829, stem: 25154, fault:9407. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1472 -[UP] flip: 1038, stem: 22794, fault:9179. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1442 -[UP] flip: 902, stem: 23656, fault:7526. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1203 -[UP] flip: 2356, stem: 23297, fault:7507. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1197 -[UP] flip: 2704, stem: 22757, fault:7412. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1184 -[UP] flip: 3218, stem: 23255, fault:7317. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1172 -[UP] flip: 2451, stem: 20979, fault:7279. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1174 -[UP] flip: 0, stem: 22120, fault:7279. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1172 -[UP] flip: 1271, stem: 19298, fault:8134. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1325 -[UP] flip: 2001, stem: 20498, fault:8077. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1320 -[UP] flip: 2025, stem: 21456, fault:8134. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1323 -[UP] flip: 678, stem: 22777, fault:8115. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1324 -[UP] flip: 0, stem: 23417, fault:8115. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1324 -[UP] flip: 1889, stem: 24297, fault:8096. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1322 -[UP] flip: 2045, stem: 25377, fault:8077. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1315 -[UP] flip: 2061, stem: 18701, fault:7165. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1142 -[UP] flip: 1175, stem: 19840, fault:7051. flip_cnt: 3, stem_cnt: 1408, fault_cnt:1126 -[UP] flip: 758, stem: 21361, fault:6975. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1120 -[UP] flip: 941, stem: 22781, fault:7165. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1141 -[UP] flip: 0, stem: 24381, fault:7165. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1141 -[UP] flip: 2877, stem: 25741, fault:7165. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1137 -[UP] flip: 0, stem: 22168, fault:5835. flip_cnt: 0, stem_cnt: 1400, fault_cnt:987 -[UP] flip: 1403, stem: 23188, fault:5816. flip_cnt: 3, stem_cnt: 1400, fault_cnt:984 -[UP] flip: 1227, stem: 24448, fault:5835. flip_cnt: 4, stem_cnt: 1400, fault_cnt:982 -[UP] flip: 0, stem: 17985, fault:7526. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1193 -[UP] flip: 401, stem: 19406, fault:7526. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1192 -[UP] flip: 1426, stem: 19165, fault:7355. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1177 -[UP] flip: 3602, stem: 20645, fault:7355. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1175 -[UP] flip: 0, stem: 23984, fault:7355. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1175 -[UP] flip: 0, stem: 25102, fault:7412. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1192 -[UP] flip: 0, stem: 25082, fault:7583. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1211 -[UP] flip: 408, stem: 21924, fault:7697. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1221 -[UP] flip: 1977, stem: 22742, fault:7697. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1224 -[UP] flip: 959, stem: 23282, fault:7697. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1229 -[UP] flip: 723, stem: 24923, fault:7697. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1221 -[UP] flip: 1176, stem: 25543, fault:7678. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1225 -[UP] flip: 2071, stem: 26204, fault:7241. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1153 -[UP] flip: 0, stem: 27403, fault:7374. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1163 -[UP] flip: 1200, stem: 27403, fault:7336. flip_cnt: 3, stem_cnt: 1405, fault_cnt:1158 -[UP] flip: 0, stem: 26782, fault:7944. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1234 -[UP] flip: 390, stem: 26043, fault:7906. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1227 -[UP] flip: 1535, stem: 23764, fault:8951. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1363 -[UP] flip: 0, stem: 23682, fault:8951. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1363 -[UP] flip: 833, stem: 21482, fault:9122. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1447 -[UP] flip: 1373, stem: 23002, fault:9122. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1443 -[UP] flip: 632, stem: 24303, fault:9122. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1439 -[UP] flip: 0, stem: 25564, fault:9122. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1439 -[UP] flip: 1995, stem: 27084, fault:9122. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1435 -[UP] flip: 2658, stem: 24382, fault:9160. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1429 -[UP] flip: 646, stem: 24404, fault:9046. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1418 -[UP] flip: 0, stem: 24524, fault:7906. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1290 -[UP] flip: 3290, stem: 18030, fault:7602. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1254 -[UP] flip: 1310, stem: 18288, fault:7716. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1229 -[UP] flip: 0, stem: 19848, fault:7583. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1220 -[UP] flip: 0, stem: 21209, fault:7583. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1220 -[UP] flip: 621, stem: 17587, fault:7260. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1181 -[UP] flip: 0, stem: 17885, fault:7640. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1242 -[UP] flip: 1259, stem: 19085, fault:7640. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1239 -[UP] flip: 2890, stem: 18282, fault:7545. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1239 -[UP] flip: 0, stem: 18840, fault:7545. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1239 -[UP] flip: 0, stem: 18158, fault:7450. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1222 -[UP] flip: 0, stem: 18436, fault:8077. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1390 -[UP] flip: 2807, stem: 19177, fault:8096. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1392 -[UP] flip: 3218, stem: 20437, fault:8077. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1390 -[UP] flip: 0, stem: 19498, fault:8096. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1399 -[UP] flip: 1000, stem: 20557, fault:8096. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1400 -[UP] flip: 1964, stem: 21275, fault:8229. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1451 -[UP] flip: 1486, stem: 18902, fault:7830. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1382 -[UP] flip: 959, stem: 19902, fault:7678. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1342 -[UP] flip: 1224, stem: 21040, fault:7678. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1345 -[UP] flip: 2157, stem: 22220, fault:7830. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1354 -[UP] flip: 2472, stem: 24060, fault:7830. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1350 -[UP] flip: 1835, stem: 24540, fault:7830. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1349 -[UP] flip: 0, stem: 20659, fault:7393. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1212 -[UP] flip: 3159, stem: 21999, fault:7336. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1208 -[UP] flip: 2977, stem: 23219, fault:7279. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1198 -[UP] flip: 0, stem: 18446, fault:6576. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1038 -[UP] flip: 0, stem: 18147, fault:6481. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1017 -[UP] flip: 0, stem: 19167, fault:6481. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1017 -[UP] flip: 0, stem: 19567, fault:6709. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1035 -[UP] flip: 1405, stem: 20428, fault:6709. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1018 -[UP] flip: 0, stem: 20866, fault:6728. flip_cnt: 0, stem_cnt: 1402, fault_cnt:983 -[UP] flip: 0, stem: 22007, fault:6728. flip_cnt: 0, stem_cnt: 1401, fault_cnt:983 -[UP] flip: 0, stem: 21080, fault:6804. flip_cnt: 0, stem_cnt: 1408, fault_cnt:990 -[UP] flip: 0, stem: 22440, fault:6804. flip_cnt: 0, stem_cnt: 1408, fault_cnt:990 -[UP] flip: 0, stem: 22198, fault:6804. flip_cnt: 0, stem_cnt: 1410, fault_cnt:988 -[UP] flip: 773, stem: 21179, fault:6994. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1120 -[UP] flip: 0, stem: 18058, fault:8191. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1240 -[UP] flip: 0, stem: 19279, fault:8191. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1240 -[UP] flip: 1448, stem: 16759, fault:7412. flip_cnt: 4, stem_cnt: 1409, fault_cnt:1135 -[UP] flip: 453, stem: 17636, fault:7450. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1145 -[UP] flip: 689, stem: 18335, fault:7602. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1200 -[UP] flip: 1459, stem: 17240, fault:5284. flip_cnt: 3, stem_cnt: 1408, fault_cnt:898 -[UP] flip: 0, stem: 18320, fault:5284. flip_cnt: 0, stem_cnt: 1408, fault_cnt:898 -[UP] flip: 0, stem: 19439, fault:5284. flip_cnt: 0, stem_cnt: 1409, fault_cnt:898 -[UP] flip: 427, stem: 20020, fault:5246. flip_cnt: 2, stem_cnt: 1408, fault_cnt:895 -[UP] flip: 715, stem: 17056, fault:7203. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1223 -[UP] flip: 696, stem: 18296, fault:7184. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1222 -[UP] flip: 3174, stem: 17591, fault:7640. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1301 -[UP] flip: 845, stem: 18271, fault:7602. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1298 -[UP] flip: 3439, stem: 18411, fault:7602. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1294 -[UP] flip: 0, stem: 19431, fault:7602. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1283 -[UP] flip: 748, stem: 19010, fault:7621. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1284 -[UP] flip: 2270, stem: 18652, fault:9654. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1516 -[UP] flip: 0, stem: 19392, fault:9616. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1510 -[UP] flip: 0, stem: 20832, fault:9616. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1510 -[UP] flip: 2346, stem: 20251, fault:9654. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1508 -[UP] flip: 2478, stem: 21070, fault:9787. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1522 -[UP] flip: 0, stem: 22010, fault:9806. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1525 -[UP] flip: 0, stem: 22171, fault:9806. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1520 -[UP] flip: 854, stem: 22291, fault:9863. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1525 -[UP] flip: 3758, stem: 23031, fault:9863. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1523 -[UP] flip: 3055, stem: 23971, fault:9825. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1519 -[UP] flip: 2424, stem: 24991, fault:9825. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1516 -[UP] flip: 0, stem: 26111, fault:9825. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1516 -[UP] flip: 780, stem: 26772, fault:9806. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1515 -[UP] flip: 473, stem: 27772, fault:9806. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1512 -[UP] flip: 3097, stem: 28332, fault:9768. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1509 -[UP] flip: 0, stem: 17655, fault:8818. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1255 -[UP] flip: 1677, stem: 17271, fault:8837. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1259 -[UP] flip: 3402, stem: 17551, fault:8970. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1279 -[UP] flip: 645, stem: 17712, fault:9027. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1296 -[UP] flip: 847, stem: 17048, fault:9977. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1496 -[UP] flip: 1252, stem: 18168, fault:9977. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1494 -[UP] flip: 3068, stem: 17468, fault:9673. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1401 -[UP] flip: 764, stem: 18407, fault:9578. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1396 -[UP] flip: 3737, stem: 15868, fault:10281. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1566 -[UP] flip: 2923, stem: 16748, fault:9388. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1360 -[UP] flip: 774, stem: 16909, fault:9331. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1356 -[UP] flip: 0, stem: 16190, fault:9274. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1324 -[UP] flip: 0, stem: 17190, fault:9274. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1324 -[UP] flip: 1936, stem: 15228, fault:9958. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1540 -[UP] flip: 1313, stem: 16368, fault:9939. flip_cnt: 4, stem_cnt: 1420, fault_cnt:1535 -[UP] flip: 0, stem: 16969, fault:9939. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1532 -[UP] flip: 1004, stem: 15748, fault:9901. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1527 -[UP] flip: 0, stem: 17048, fault:9901. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1527 -[UP] flip: 2952, stem: 18248, fault:9901. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1524 -[UP] flip: 1174, stem: 19349, fault:9863. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1522 -[UP] flip: 2937, stem: 18689, fault:9787. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1510 -[UP] flip: 0, stem: 17770, fault:9711. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1500 -[UP] flip: 1892, stem: 18230, fault:9673. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1496 -[UP] flip: 3270, stem: 16771, fault:9274. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1421 -[UP] flip: 702, stem: 17832, fault:9274. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1418 -[UP] flip: 3316, stem: 18832, fault:9217. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1414 -[UP] flip: 0, stem: 19332, fault:9217. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1413 -[UP] flip: 0, stem: 18692, fault:9008. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1290 -[UP] flip: 2775, stem: 18952, fault:8970. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1286 -[UP] flip: 0, stem: 16292, fault:8704. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1234 -[UP] flip: 1019, stem: 17174, fault:8628. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1194 -[UP] flip: 1231, stem: 18294, fault:8628. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1192 -[UP] flip: 0, stem: 19834, fault:8628. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1192 -[UP] flip: 592, stem: 21095, fault:8533. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1184 -[UP] flip: 4298, stem: 22255, fault:8476. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1180 -[UP] flip: 0, stem: 23655, fault:8476. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1180 -[UP] flip: 1973, stem: 24555, fault:8476. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1178 -[UP] flip: 2129, stem: 25035, fault:8457. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1175 -[UP] flip: 2183, stem: 24634, fault:8362. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1152 -[UP] flip: 0, stem: 18038, fault:7906. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1085 -[UP] flip: 0, stem: 19138, fault:7906. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1085 -[UP] flip: 0, stem: 19799, fault:7906. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1085 -[UP] flip: 2785, stem: 17918, fault:7716. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1069 -[UP] flip: 0, stem: 19158, fault:7716. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1069 -[UP] flip: 0, stem: 20118, fault:7659. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1066 -[UP] flip: 0, stem: 18697, fault:7925. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1107 -[UP] flip: 1351, stem: 19935, fault:7925. flip_cnt: 3, stem_cnt: 1413, fault_cnt:1104 -[UP] flip: 0, stem: 21556, fault:7925. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1104 -[UP] flip: 0, stem: 22576, fault:7925. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1104 -[UP] flip: 2408, stem: 23396, fault:7906. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1102 -[UP] flip: 2690, stem: 23394, fault:7830. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1097 -[UP] flip: 4213, stem: 23655, fault:7127. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1000 -[UP] flip: 2566, stem: 22215, fault:7336. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1038 -[UP] flip: 0, stem: 22234, fault:7298. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1034 -[UP] flip: 0, stem: 21934, fault:7564. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1070 -[UP] flip: 636, stem: 18737, fault:7944. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1229 -[UP] flip: 1160, stem: 19737, fault:7925. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1227 -[UP] flip: 1071, stem: 20317, fault:7906. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1226 -[UP] flip: 0, stem: 20016, fault:7887. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1224 -[UP] flip: 1669, stem: 20397, fault:7906. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1199 -[UP] flip: 0, stem: 21456, fault:7906. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1199 -[UP] flip: 0, stem: 16953, fault:8951. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1423 -[UP] flip: 926, stem: 17934, fault:8932. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1420 -[UP] flip: 1321, stem: 19072, fault:8951. flip_cnt: 3, stem_cnt: 1416, fault_cnt:1421 -[UP] flip: 0, stem: 18989, fault:9141. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1440 -[UP] flip: 1262, stem: 19929, fault:9141. flip_cnt: 3, stem_cnt: 1419, fault_cnt:1439 -[UP] flip: 3062, stem: 17629, fault:9141. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1431 -[UP] flip: 1297, stem: 16869, fault:9160. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1431 -[UP] flip: 3881, stem: 17569, fault:9255. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1443 -[UP] flip: 3707, stem: 15267, fault:9217. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1479 -[UP] flip: 527, stem: 12147, fault:9787. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1542 -[UP] flip: 1272, stem: 15866, fault:9787. flip_cnt: 3, stem_cnt: 1422, fault_cnt:1543 -[UP] flip: 2628, stem: 16066, fault:9787. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1540 -[UP] flip: 0, stem: 16946, fault:9787. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1540 -[UP] flip: 3030, stem: 17786, fault:9749. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1536 -[UP] flip: 521, stem: 15964, fault:10091. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1631 -[UP] flip: 2209, stem: 16624, fault:10186. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1649 -[UP] flip: 2887, stem: 15123, fault:10015. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1653 -[UP] flip: 0, stem: 16503, fault:10015. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1653 -[UP] flip: 1816, stem: 16523, fault:10015. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1650 -[UP] flip: 1673, stem: 17244, fault:10015. flip_cnt: 3, stem_cnt: 1424, fault_cnt:1647 -[UP] flip: 621, stem: 18025, fault:10015. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1644 -[UP] flip: 801, stem: 18805, fault:10015. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1643 -[UP] flip: 2826, stem: 19345, fault:10015. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1639 -[UP] flip: 0, stem: 18723, fault:9996. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1637 -[UP] flip: 2067, stem: 19603, fault:9996. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1635 -[UP] flip: 1917, stem: 14422, fault:10205. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1591 -[UP] flip: 1705, stem: 14942, fault:10167. flip_cnt: 4, stem_cnt: 1426, fault_cnt:1589 -[UP] flip: 1151, stem: 14843, fault:10281. flip_cnt: 4, stem_cnt: 1425, fault_cnt:1593 -[UP] flip: 0, stem: 14663, fault:10224. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1586 -[UP] flip: 2073, stem: 15421, fault:10224. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1588 -[UP] flip: 1787, stem: 16221, fault:10186. flip_cnt: 3, stem_cnt: 1427, fault_cnt:1597 -[UP] flip: 1427, stem: 17021, fault:10129. flip_cnt: 3, stem_cnt: 1427, fault_cnt:1595 -[UP] flip: 0, stem: 16841, fault:10148. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1597 -[UP] flip: 0, stem: 17100, fault:10148. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1597 -[UP] flip: 1305, stem: 16260, fault:9293. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1405 -[UP] flip: 2528, stem: 16841, fault:9255. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1401 -[UP] flip: 2230, stem: 16920, fault:9236. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1397 -[UP] flip: 477, stem: 17300, fault:9198. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1402 -[UP] flip: 2614, stem: 18100, fault:9160. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1399 -[UP] flip: 1073, stem: 19039, fault:9141. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1401 -[UP] flip: 1481, stem: 15379, fault:9274. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1415 -[UP] flip: 0, stem: 16359, fault:9312. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1432 -[UP] flip: 1931, stem: 16500, fault:9312. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1428 -[UP] flip: 0, stem: 17161, fault:9312. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1428 -[UP] flip: 1999, stem: 17641, fault:9293. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1426 -[UP] flip: 3327, stem: 18261, fault:9293. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1416 -[UP] flip: 0, stem: 18681, fault:9293. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1416 -[UP] flip: 0, stem: 16960, fault:9673. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1481 -[UP] flip: 0, stem: 17380, fault:9673. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1481 -[UP] flip: 3416, stem: 16761, fault:9616. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1465 -[UP] flip: 801, stem: 17620, fault:9635. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1468 -[UP] flip: 1687, stem: 18679, fault:10509. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1676 -[UP] flip: 0, stem: 19739, fault:10509. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1682 -[UP] flip: 1930, stem: 20579, fault:10509. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1680 -[UP] flip: 1683, stem: 21259, fault:10490. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1672 -[UP] flip: 2693, stem: 22219, fault:10490. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1678 -[UP] flip: 1794, stem: 22477, fault:10528. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1681 -[UP] flip: 1115, stem: 23077, fault:10585. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1699 -[UP] flip: 0, stem: 23418, fault:10585. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1693 -[UP] flip: 0, stem: 22477, fault:10756. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1724 -[UP] flip: 674, stem: 23137, fault:10699. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1721 -[UP] flip: 0, stem: 23594, fault:10908. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1764 -[UP] flip: 2090, stem: 23854, fault:10851. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1759 -[UP] flip: 1552, stem: 24434, fault:10851. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1757 -[UP] flip: 2261, stem: 25154, fault:10813. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1754 -[UP] flip: 1155, stem: 25194, fault:10794. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1752 -[UP] flip: 2830, stem: 25136, fault:10889. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1751 -[UP] flip: 3516, stem: 25796, fault:10889. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1752 -[UP] flip: 1680, stem: 26035, fault:11022. flip_cnt: 4, stem_cnt: 1433, fault_cnt:1780 -[UP] flip: 873, stem: 24919, fault:10870. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1762 -[UP] flip: 911, stem: 24600, fault:10756. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1753 -[UP] flip: 3316, stem: 24480, fault:10718. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1749 -[UP] flip: 1446, stem: 24980, fault:10718. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1747 -[UP] flip: 2632, stem: 25940, fault:10585. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1738 -[UP] flip: 2728, stem: 25800, fault:10547. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1733 -[UP] flip: 0, stem: 26398, fault:10338. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1701 -[UP] flip: 3190, stem: 26519, fault:10319. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1698 -[UP] flip: 0, stem: 25194, fault:10433. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1721 -[UP] flip: 1417, stem: 24953, fault:10414. flip_cnt: 4, stem_cnt: 1435, fault_cnt:1720 -[UP] flip: 1298, stem: 24134, fault:10471. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1765 -[UP] flip: 1081, stem: 25054, fault:10471. flip_cnt: 3, stem_cnt: 1434, fault_cnt:1760 -[UP] flip: 4667, stem: 24915, fault:10395. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1753 -[UP] flip: 3275, stem: 24755, fault:10376. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1749 -[UP] flip: 3774, stem: 25755, fault:10376. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1745 -[UP] flip: 2016, stem: 22854, fault:10414. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1762 -[UP] flip: 1149, stem: 21457, fault:10262. flip_cnt: 3, stem_cnt: 1431, fault_cnt:1749 -[UP] flip: 4348, stem: 19136, fault:10319. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1761 -[UP] flip: 729, stem: 18877, fault:10281. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1752 -[UP] flip: 2164, stem: 19837, fault:10224. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1742 -[UP] flip: 0, stem: 20877, fault:10224. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1742 -[UP] flip: 4317, stem: 22537, fault:10224. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1738 -[UP] flip: 3108, stem: 23477, fault:10224. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1739 -[UP] flip: 767, stem: 23877, fault:10224. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1736 -[UP] flip: 650, stem: 23916, fault:10376. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1763 -[UP] flip: 737, stem: 24074, fault:10395. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1761 -[UP] flip: 1538, stem: 24834, fault:10433. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1766 -[UP] flip: 2695, stem: 23215, fault:10376. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1751 -[UP] flip: 2151, stem: 23536, fault:10053. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1659 -[UP] flip: 857, stem: 24416, fault:10053. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1660 -[UP] flip: 3437, stem: 20316, fault:10338. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1717 -[UP] flip: 0, stem: 21236, fault:10300. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1713 -[UP] flip: 3034, stem: 22236, fault:10300. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1709 -[UP] flip: 1475, stem: 22576, fault:10281. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1705 -[UP] flip: 3622, stem: 21576, fault:10243. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1701 -[UP] flip: 554, stem: 22137, fault:10243. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1696 -[UP] flip: 823, stem: 22996, fault:10243. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1697 -[UP] flip: 3274, stem: 23334, fault:10319. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1716 -[UP] flip: 3290, stem: 19897, fault:10281. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1712 -[UP] flip: 2745, stem: 19477, fault:10756. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1792 -[UP] flip: 1316, stem: 20258, fault:10699. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1789 -[UP] flip: 1644, stem: 21096, fault:10718. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1792 -[UP] flip: 1186, stem: 22036, fault:10718. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1792 -[UP] flip: 3275, stem: 22834, fault:10737. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1796 -[UP] flip: 1543, stem: 23534, fault:10699. flip_cnt: 3, stem_cnt: 1434, fault_cnt:1795 -[UP] flip: 3147, stem: 23294, fault:10718. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1796 -[UP] flip: 0, stem: 24114, fault:10756. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1799 -[UP] flip: 0, stem: 25055, fault:10756. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1799 -[UP] flip: 1388, stem: 25395, fault:10756. flip_cnt: 3, stem_cnt: 1433, fault_cnt:1796 -[UP] flip: 1809, stem: 25575, fault:10699. flip_cnt: 4, stem_cnt: 1433, fault_cnt:1794 -[UP] flip: 1478, stem: 24173, fault:10661. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1816 -[UP] flip: 3591, stem: 22833, fault:10604. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1804 -[UP] flip: 2681, stem: 23373, fault:10604. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1802 -[UP] flip: 3893, stem: 24171, fault:10471. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1793 -[UP] flip: 3713, stem: 22051, fault:10376. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1790 -[UP] flip: 3302, stem: 22331, fault:10357. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1784 -[UP] flip: 1475, stem: 24030, fault:10452. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1797 -[UP] flip: 1323, stem: 23351, fault:10566. flip_cnt: 3, stem_cnt: 1437, fault_cnt:1805 -[UP] flip: 1232, stem: 24372, fault:10566. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1803 -[UP] flip: 0, stem: 25072, fault:10566. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1802 -[UP] flip: 1503, stem: 25412, fault:10566. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1798 -[UP] flip: 3767, stem: 21330, fault:10034. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1705 -[UP] flip: 3915, stem: 21910, fault:10129. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1707 -[UP] flip: 2783, stem: 22050, fault:10034. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1694 -[UP] flip: 1326, stem: 22690, fault:10015. flip_cnt: 3, stem_cnt: 1438, fault_cnt:1691 -[UP] flip: 1744, stem: 23450, fault:10015. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1689 -[UP] flip: 2241, stem: 23810, fault:9882. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1674 -[UP] flip: 0, stem: 24671, fault:9502. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1590 -[UP] flip: 1187, stem: 24392, fault:9521. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1588 -[UP] flip: 2369, stem: 25092, fault:9559. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1593 -[UP] flip: 2066, stem: 25653, fault:9540. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1594 -[UP] flip: 3423, stem: 25513, fault:10224. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1724 -[UP] flip: 1671, stem: 24152, fault:10205. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1715 -[UP] flip: 0, stem: 25053, fault:10205. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1714 -[UP] flip: 1298, stem: 26134, fault:10205. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1713 -[UP] flip: 3769, stem: 26974, fault:10167. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1710 -[UP] flip: 0, stem: 27873, fault:10167. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1710 -[UP] flip: 0, stem: 27054, fault:10148. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1707 -[UP] flip: 2216, stem: 27794, fault:10167. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1709 -[UP] flip: 0, stem: 27575, fault:10167. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1709 -[UP] flip: 2017, stem: 27795, fault:10129. flip_cnt: 4, stem_cnt: 1433, fault_cnt:1707 -[UP] flip: 697, stem: 28116, fault:10243. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1712 -[UP] flip: 1844, stem: 28856, fault:10205. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1708 -[UP] flip: 1451, stem: 20940, fault:10224. flip_cnt: 3, stem_cnt: 1428, fault_cnt:1671 -[UP] flip: 2000, stem: 22261, fault:10224. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1667 -[UP] flip: 1161, stem: 23102, fault:10110. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1631 -[UP] flip: 1451, stem: 23962, fault:10091. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1629 -[UP] flip: 2951, stem: 24242, fault:9996. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1623 -[UP] flip: 3420, stem: 21823, fault:9920. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1604 -[UP] flip: 808, stem: 22524, fault:9635. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1559 -[UP] flip: 1730, stem: 22886, fault:9597. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1554 -[UP] flip: 0, stem: 20446, fault:9787. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1562 -[UP] flip: 0, stem: 21246, fault:9787. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1562 -[UP] flip: 3686, stem: 21346, fault:9787. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1563 -[UP] flip: 0, stem: 22406, fault:10243. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1674 -[UP] flip: 2844, stem: 21002, fault:10433. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1709 -[UP] flip: 1572, stem: 22222, fault:10642. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1742 -[UP] flip: 4545, stem: 21242, fault:10547. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1709 -[UP] flip: 1063, stem: 22282, fault:10433. flip_cnt: 3, stem_cnt: 1426, fault_cnt:1695 -[UP] flip: 2028, stem: 23702, fault:10395. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1691 -[UP] flip: 0, stem: 25242, fault:10395. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1691 -[UP] flip: 3109, stem: 26062, fault:10338. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1687 -[UP] flip: 2785, stem: 26660, fault:10148. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1662 -[UP] flip: 3678, stem: 27740, fault:10452. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1713 -[UP] flip: 5220, stem: 28822, fault:10395. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1706 -[UP] flip: 3540, stem: 17822, fault:10908. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1765 -[UP] flip: 2927, stem: 19022, fault:10908. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1761 -[UP] flip: 0, stem: 19962, fault:10908. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1761 -[UP] flip: 3650, stem: 20582, fault:10908. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1758 -[UP] flip: 3118, stem: 22182, fault:10908. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1754 -[UP] flip: 2609, stem: 22882, fault:10870. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1751 -[UP] flip: 1997, stem: 22300, fault:10680. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1742 -[UP] flip: 682, stem: 23301, fault:10661. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1741 -[UP] flip: 1533, stem: 23462, fault:10623. flip_cnt: 3, stem_cnt: 1426, fault_cnt:1731 -[UP] flip: 2081, stem: 24382, fault:10623. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1730 -[UP] flip: 3712, stem: 24380, fault:10794. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1739 -[UP] flip: 2205, stem: 24742, fault:10794. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1737 -[UP] flip: 2558, stem: 17396, fault:11174. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1802 -[UP] flip: 3369, stem: 18316, fault:11155. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1798 -[UP] flip: 3473, stem: 18936, fault:11117. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1794 -[UP] flip: 2750, stem: 19156, fault:11060. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1790 -[UP] flip: 2159, stem: 19294, fault:11079. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1791 -[UP] flip: 2170, stem: 19214, fault:11060. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1792 -[UP] flip: 1700, stem: 19514, fault:11060. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1792 -[UP] flip: 0, stem: 20576, fault:11060. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1782 -[UP] flip: 1306, stem: 15090, fault:11098. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1772 -[UP] flip: 937, stem: 16191, fault:11174. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1783 -[UP] flip: 2304, stem: 17151, fault:11174. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1784 -[UP] flip: 1204, stem: 17551, fault:11459. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1850 -[UP] flip: 1251, stem: 18651, fault:11459. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1849 -[UP] flip: 1794, stem: 18973, fault:11364. flip_cnt: 3, stem_cnt: 1435, fault_cnt:1842 -[UP] flip: 1730, stem: 20173, fault:11307. flip_cnt: 3, stem_cnt: 1435, fault_cnt:1839 -[UP] flip: 4839, stem: 21113, fault:11269. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1835 -[UP] flip: 0, stem: 18454, fault:11269. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1835 -[UP] flip: 1511, stem: 19174, fault:11269. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1833 -[UP] flip: 1190, stem: 19597, fault:11136. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1820 -[UP] flip: 2006, stem: 19998, fault:11136. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1818 -[UP] flip: 4116, stem: 20196, fault:11117. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1809 -[UP] flip: 3737, stem: 19755, fault:11117. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1805 -[UP] flip: 2124, stem: 16894, fault:10870. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1780 -[UP] flip: 3095, stem: 16053, fault:10984. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1788 -[UP] flip: 1418, stem: 16673, fault:10965. flip_cnt: 3, stem_cnt: 1435, fault_cnt:1785 -[UP] flip: 902, stem: 13128, fault:10870. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1805 -[UP] flip: 537, stem: 11607, fault:11250. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1870 -[UP] flip: 759, stem: 12428, fault:11231. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1867 -[UP] flip: 0, stem: 13168, fault:11231. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1867 -[UP] flip: 695, stem: 13748, fault:11212. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1864 -[UP] flip: 2470, stem: 14808, fault:11193. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1862 -[UP] flip: 1742, stem: 15467, fault:11174. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1852 -[UP] flip: 1047, stem: 15888, fault:11117. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1851 -[UP] flip: 0, stem: 17028, fault:11117. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1851 -[UP] flip: 2303, stem: 17668, fault:11060. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1849 -[UP] flip: 3333, stem: 18728, fault:11174. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1873 -[UP] flip: 1270, stem: 19428, fault:11174. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1872 -[UP] flip: 2437, stem: 20288, fault:11117. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1868 -[UP] flip: 2672, stem: 20888, fault:10737. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1815 -[UP] flip: 0, stem: 21468, fault:10737. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1815 -[UP] flip: 1355, stem: 21767, fault:10756. flip_cnt: 4, stem_cnt: 1441, fault_cnt:1813 -[UP] flip: 2011, stem: 21367, fault:11478. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1898 -[UP] flip: 3786, stem: 21268, fault:11307. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1883 -[UP] flip: 2933, stem: 21808, fault:10984. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1846 -[UP] flip: 2379, stem: 22349, fault:10984. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1842 -[UP] flip: 2958, stem: 20951, fault:10927. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1828 -[UP] flip: 1381, stem: 21711, fault:10490. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1757 -[UP] flip: 2626, stem: 20271, fault:10414. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1753 -[UP] flip: 1357, stem: 20552, fault:10281. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1744 -[UP] flip: 2731, stem: 20932, fault:10281. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1742 -[UP] flip: 3768, stem: 21512, fault:10129. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1717 -[UP] flip: 2906, stem: 18132, fault:9882. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1692 -[UP] flip: 4446, stem: 15434, fault:9483. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1590 -[UP] flip: 0, stem: 12913, fault:9483. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1590 -[UP] flip: 0, stem: 12633, fault:9483. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1590 -[UP] flip: 3696, stem: 13053, fault:9445. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1586 -[UP] flip: 561, stem: 13572, fault:10262. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1730 -[UP] flip: 949, stem: 14252, fault:10262. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1742 -[UP] flip: 0, stem: 14831, fault:10357. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1750 -[UP] flip: 1027, stem: 14492, fault:10357. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1747 -[UP] flip: 902, stem: 15071, fault:10414. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1750 -[UP] flip: 4061, stem: 15570, fault:10490. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1754 -[UP] flip: 2875, stem: 16750, fault:10490. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1751 -[UP] flip: 989, stem: 18191, fault:10357. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1740 -[UP] flip: 3166, stem: 19131, fault:10604. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1758 -[UP] flip: 2286, stem: 19169, fault:10623. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1762 -[UP] flip: 2491, stem: 19309, fault:10889. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1812 -[UP] flip: 1123, stem: 19870, fault:10832. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1798 -[UP] flip: 1768, stem: 11510, fault:9882. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1620 -[UP] flip: 4040, stem: 11531, fault:9768. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1611 -[UP] flip: 3012, stem: 13231, fault:9768. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1608 -[UP] flip: 0, stem: 13831, fault:9578. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1578 -[UP] flip: 4101, stem: 13891, fault:9521. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1574 -[UP] flip: 4132, stem: 14231, fault:9407. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1566 -[UP] flip: 0, stem: 14712, fault:9407. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1566 -[UP] flip: 0, stem: 15572, fault:9407. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1566 -[UP] flip: 0, stem: 16232, fault:9407. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1566 -[UP] flip: 0, stem: 15574, fault:9217. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1550 -[UP] flip: 0, stem: 16874, fault:9217. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1550 -[UP] flip: 0, stem: 16553, fault:9426. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1580 -[UP] flip: 2366, stem: 16712, fault:9407. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1581 -[UP] flip: 3275, stem: 15770, fault:9901. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1652 -[UP] flip: 1652, stem: 16610, fault:9844. flip_cnt: 3, stem_cnt: 1438, fault_cnt:1649 -[UP] flip: 0, stem: 17348, fault:9730. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1635 -[UP] flip: 611, stem: 18148, fault:9730. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1632 -[UP] flip: 1304, stem: 19708, fault:9673. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1629 -[UP] flip: 3955, stem: 20368, fault:9673. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1627 -[UP] flip: 0, stem: 18169, fault:9654. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1621 -[UP] flip: 0, stem: 18009, fault:9654. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1620 -[UP] flip: 0, stem: 18449, fault:9654. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1620 -[UP] flip: 0, stem: 18709, fault:9654. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1620 -[UP] flip: 888, stem: 18310, fault:9635. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1618 -[UP] flip: 365, stem: 18231, fault:9939. flip_cnt: 1, stem_cnt: 1437, fault_cnt:1667 -[UP] flip: 5099, stem: 18411, fault:9939. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1663 -[UP] flip: 961, stem: 17772, fault:9844. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1641 -[UP] flip: 972, stem: 18634, fault:9806. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1633 -[UP] flip: 3880, stem: 18154, fault:10034. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1640 -[UP] flip: 2167, stem: 18414, fault:10034. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1636 -[UP] flip: 367, stem: 18611, fault:10091. flip_cnt: 1, stem_cnt: 1437, fault_cnt:1637 -[UP] flip: 954, stem: 19551, fault:10110. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1646 -[UP] flip: 2752, stem: 18632, fault:9806. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1608 -[UP] flip: 1779, stem: 19270, fault:9768. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1610 -[UP] flip: 0, stem: 19870, fault:10015. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1663 -[UP] flip: 0, stem: 20328, fault:10015. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1663 -[UP] flip: 0, stem: 17068, fault:9958. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1649 -[UP] flip: 1361, stem: 17429, fault:9939. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1646 -[UP] flip: 630, stem: 17610, fault:9939. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1643 -[UP] flip: 1791, stem: 17689, fault:9958. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1639 -[UP] flip: 1786, stem: 18530, fault:9711. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1595 -[UP] flip: 4048, stem: 19350, fault:9654. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1587 -[UP] flip: 4348, stem: 19907, fault:9635. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1583 -[UP] flip: 0, stem: 19888, fault:9635. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1580 -[UP] flip: 0, stem: 19788, fault:9635. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1580 -[UP] flip: 2117, stem: 20407, fault:9692. flip_cnt: 4, stem_cnt: 1441, fault_cnt:1581 -[UP] flip: 632, stem: 20404, fault:10015. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1642 -[UP] flip: 2303, stem: 14167, fault:10585. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1772 -[UP] flip: 0, stem: 14626, fault:10585. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1772 -[UP] flip: 3703, stem: 13928, fault:10623. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1780 -[UP] flip: 2011, stem: 14227, fault:10642. flip_cnt: 4, stem_cnt: 1441, fault_cnt:1782 -[UP] flip: 0, stem: 15007, fault:10642. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1782 -[UP] flip: 797, stem: 15308, fault:10642. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1779 -[UP] flip: 5033, stem: 16289, fault:10585. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1775 -[UP] flip: 4012, stem: 16489, fault:10528. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1771 -[UP] flip: 3253, stem: 17169, fault:10471. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1761 -[UP] flip: 0, stem: 17407, fault:10471. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1753 -[UP] flip: 2734, stem: 18107, fault:10471. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1750 -[UP] flip: 2463, stem: 13902, fault:10395. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1729 -[UP] flip: 4225, stem: 15162, fault:10357. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1726 -[UP] flip: 3295, stem: 15882, fault:10357. flip_cnt: 7, stem_cnt: 1446, fault_cnt:1722 -[UP] flip: 0, stem: 16902, fault:9825. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1634 -[UP] flip: 2248, stem: 17303, fault:9825. flip_cnt: 4, stem_cnt: 1445, fault_cnt:1632 -[UP] flip: 710, stem: 17447, fault:9692. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1604 -[UP] flip: 0, stem: 18348, fault:9749. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1620 -[UP] flip: 0, stem: 19369, fault:9749. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1620 -[UP] flip: 1928, stem: 20409, fault:9749. flip_cnt: 3, stem_cnt: 1439, fault_cnt:1617 -[UP] flip: 1166, stem: 19629, fault:9692. flip_cnt: 3, stem_cnt: 1439, fault_cnt:1619 -[UP] flip: 933, stem: 20729, fault:9673. flip_cnt: 3, stem_cnt: 1439, fault_cnt:1612 -[UP] flip: 1882, stem: 20908, fault:9654. flip_cnt: 3, stem_cnt: 1440, fault_cnt:1609 -[UP] flip: 4079, stem: 20729, fault:9597. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1598 -[UP] flip: 4432, stem: 20669, fault:9540. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1592 -[UP] flip: 3332, stem: 21129, fault:9502. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1588 -[UP] flip: 3032, stem: 20288, fault:9445. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1573 -[UP] flip: 2916, stem: 20708, fault:9445. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1569 -[UP] flip: 2547, stem: 21088, fault:9445. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1565 -[UP] flip: 3039, stem: 21768, fault:9445. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1563 -[UP] flip: 667, stem: 20431, fault:9388. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1550 -[UP] flip: 0, stem: 20951, fault:9388. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1550 -[UP] flip: 4249, stem: 17469, fault:9388. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1546 -[UP] flip: 4312, stem: 16071, fault:9445. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1548 -[UP] flip: 2217, stem: 16690, fault:9483. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1551 -[UP] flip: 0, stem: 17730, fault:9483. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1566 -[UP] flip: 2200, stem: 18510, fault:9426. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1564 -[UP] flip: 1797, stem: 14652, fault:9350. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1562 -[UP] flip: 783, stem: 15252, fault:9312. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1559 -[UP] flip: 3745, stem: 15792, fault:9274. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1555 -[UP] flip: 0, stem: 16472, fault:9274. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1555 -[UP] flip: 1670, stem: 17793, fault:9274. flip_cnt: 4, stem_cnt: 1435, fault_cnt:1553 -[UP] flip: 983, stem: 18074, fault:9236. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1551 -[UP] flip: 2446, stem: 18734, fault:9255. flip_cnt: 4, stem_cnt: 1434, fault_cnt:1549 -[UP] flip: 3351, stem: 19674, fault:9217. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1545 -[UP] flip: 4620, stem: 20392, fault:9198. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1543 -[UP] flip: 786, stem: 20672, fault:9236. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1554 -[UP] flip: 0, stem: 19533, fault:9730. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1633 -[UP] flip: 3703, stem: 20173, fault:9730. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1631 -[UP] flip: 0, stem: 20533, fault:9730. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1631 -[UP] flip: 4182, stem: 18808, fault:9730. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1627 -[UP] flip: 833, stem: 21568, fault:9711. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1626 -[UP] flip: 0, stem: 21628, fault:9863. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1642 -[UP] flip: 2197, stem: 21107, fault:10262. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1702 -[UP] flip: 2533, stem: 14166, fault:10072. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1698 -[UP] flip: 4204, stem: 14846, fault:10072. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1694 -[UP] flip: 0, stem: 15646, fault:8780. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1424 -[UP] flip: 0, stem: 16347, fault:8780. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1424 -[UP] flip: 0, stem: 16747, fault:8780. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1424 -[UP] flip: 0, stem: 16010, fault:8685. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1415 -[UP] flip: 3401, stem: 16370, fault:8685. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1413 -[UP] flip: 1128, stem: 15052, fault:8685. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1405 -[UP] flip: 806, stem: 16013, fault:8666. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1402 -[UP] flip: 0, stem: 17333, fault:8666. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1402 -[UP] flip: 0, stem: 17534, fault:8666. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1402 -[UP] flip: 705, stem: 18114, fault:8666. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1399 -[UP] flip: 2037, stem: 19134, fault:8647. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1397 -[UP] flip: 2073, stem: 19633, fault:8647. flip_cnt: 4, stem_cnt: 1435, fault_cnt:1399 -[UP] flip: 0, stem: 19753, fault:8685. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1401 -[UP] flip: 0, stem: 21073, fault:8685. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1401 -[UP] flip: 0, stem: 21674, fault:8685. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1401 -[UP] flip: 2252, stem: 20275, fault:8685. flip_cnt: 4, stem_cnt: 1433, fault_cnt:1402 -[UP] flip: 0, stem: 20995, fault:8685. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1401 -[UP] flip: 1263, stem: 20757, fault:8666. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1400 -[UP] flip: 0, stem: 20858, fault:8666. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1400 -[UP] flip: 3171, stem: 20738, fault:8666. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1398 -[UP] flip: 2446, stem: 19299, fault:8590. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1392 -[UP] flip: 0, stem: 18418, fault:8590. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1389 -[UP] flip: 2553, stem: 18818, fault:8571. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1387 -[UP] flip: 3091, stem: 18276, fault:8628. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1395 -[UP] flip: 0, stem: 19216, fault:8628. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1395 -[UP] flip: 0, stem: 20396, fault:8628. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1395 -[UP] flip: 0, stem: 20555, fault:8628. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1395 -[UP] flip: 860, stem: 20935, fault:8628. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1394 -[UP] flip: 2641, stem: 21656, fault:8609. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1384 -[UP] flip: 695, stem: 19079, fault:8761. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1421 -[UP] flip: 0, stem: 16818, fault:8799. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1436 -[UP] flip: 0, stem: 17718, fault:8799. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1436 -[UP] flip: 0, stem: 17338, fault:8856. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1442 -[UP] flip: 1149, stem: 18339, fault:8856. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1441 -[UP] flip: 0, stem: 17319, fault:8837. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1437 -[UP] flip: 1046, stem: 17257, fault:8837. flip_cnt: 3, stem_cnt: 1431, fault_cnt:1438 -[UP] flip: 1288, stem: 17837, fault:8837. flip_cnt: 3, stem_cnt: 1431, fault_cnt:1443 -[UP] flip: 0, stem: 17375, fault:8932. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1461 -[UP] flip: 960, stem: 17454, fault:8932. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1458 -[UP] flip: 1294, stem: 18012, fault:8932. flip_cnt: 3, stem_cnt: 1436, fault_cnt:1457 -[UP] flip: 0, stem: 16032, fault:8761. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1439 -[UP] flip: 1144, stem: 16532, fault:8761. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1438 -[UP] flip: 0, stem: 17030, fault:8761. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1436 -[UP] flip: 2529, stem: 17050, fault:8856. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1458 -[UP] flip: 0, stem: 15249, fault:8343. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1351 -[UP] flip: 3235, stem: 13807, fault:8248. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1341 -[UP] flip: 2719, stem: 14467, fault:8248. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1336 -[UP] flip: 4822, stem: 14866, fault:8210. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1332 -[UP] flip: 2621, stem: 15063, fault:8210. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1335 -[UP] flip: 4038, stem: 14863, fault:8153. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1321 -[UP] flip: 2998, stem: 15782, fault:8153. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1333 -[UP] flip: 3361, stem: 16642, fault:8153. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1330 -[UP] flip: 0, stem: 16562, fault:8153. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1328 -[UP] flip: 0, stem: 17263, fault:8153. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1328 -[UP] flip: 1982, stem: 18022, fault:8115. flip_cnt: 3, stem_cnt: 1446, fault_cnt:1325 -[UP] flip: 4418, stem: 18442, fault:8077. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1322 -[UP] flip: 0, stem: 17880, fault:10471. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1743 -[UP] flip: 3712, stem: 18340, fault:10471. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1740 -[UP] flip: 3940, stem: 18999, fault:10623. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1750 -[UP] flip: 1606, stem: 19660, fault:10623. flip_cnt: 4, stem_cnt: 1448, fault_cnt:1748 -[UP] flip: 1295, stem: 19220, fault:10452. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1728 -[UP] flip: 726, stem: 18461, fault:10566. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1734 -[UP] flip: 1195, stem: 19601, fault:10547. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1733 -[UP] flip: 770, stem: 19123, fault:10433. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1723 -[UP] flip: 4851, stem: 19463, fault:10357. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1716 -[UP] flip: 3214, stem: 19161, fault:10395. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1719 -[UP] flip: 2001, stem: 17883, fault:10585. flip_cnt: 4, stem_cnt: 1445, fault_cnt:1749 -[UP] flip: 4262, stem: 18223, fault:10547. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1744 -[UP] flip: 1873, stem: 18623, fault:10528. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1740 -[UP] flip: 0, stem: 19124, fault:10414. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1733 -[UP] flip: 2413, stem: 19783, fault:10452. flip_cnt: 4, stem_cnt: 1445, fault_cnt:1736 -[UP] flip: 2000, stem: 20243, fault:10528. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1769 -[UP] flip: 982, stem: 20944, fault:9616. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1669 -[UP] flip: 4076, stem: 21124, fault:9597. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1665 -[UP] flip: 2553, stem: 16944, fault:9483. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1650 -[UP] flip: 2758, stem: 16962, fault:9844. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1709 -[UP] flip: 894, stem: 17141, fault:9844. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1710 -[UP] flip: 2481, stem: 17379, fault:10205. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1770 -[UP] flip: 2550, stem: 17979, fault:10205. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1769 -[UP] flip: 3859, stem: 18778, fault:10243. flip_cnt: 4, stem_cnt: 1450, fault_cnt:1771 -[UP] flip: 4057, stem: 17678, fault:10357. flip_cnt: 7, stem_cnt: 1450, fault_cnt:1804 -[UP] flip: 3687, stem: 18078, fault:10205. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1774 -[UP] flip: 1462, stem: 17799, fault:10186. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1771 -[UP] flip: 5499, stem: 18379, fault:10186. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1767 -[UP] flip: 0, stem: 14899, fault:10186. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1767 -[UP] flip: 0, stem: 16239, fault:10186. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1767 -[UP] flip: 2650, stem: 10400, fault:9901. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1753 -[UP] flip: 4472, stem: 11240, fault:9863. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1745 -[UP] flip: 2376, stem: 12180, fault:9844. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1743 -[UP] flip: 2706, stem: 11600, fault:9749. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1735 -[UP] flip: 3096, stem: 12160, fault:9578. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1667 -[UP] flip: 3254, stem: 12300, fault:9559. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1663 -[UP] flip: 0, stem: 12560, fault:9559. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1661 -[UP] flip: 4597, stem: 12880, fault:9559. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1656 -[UP] flip: 1042, stem: 12921, fault:9540. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1653 -[UP] flip: 1812, stem: 13621, fault:9540. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1650 -[UP] flip: 0, stem: 14541, fault:9540. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1648 -[UP] flip: 2162, stem: 14301, fault:9540. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1644 -[UP] flip: 2016, stem: 14700, fault:9426. flip_cnt: 4, stem_cnt: 1448, fault_cnt:1624 -[UP] flip: 5870, stem: 15380, fault:9369. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1622 -[UP] flip: 0, stem: 14839, fault:9369. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1622 -[UP] flip: 2625, stem: 15020, fault:9369. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1620 -[UP] flip: 1019, stem: 16582, fault:8704. flip_cnt: 2, stem_cnt: 1446, fault_cnt:1452 -[UP] flip: 0, stem: 17282, fault:8704. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1452 -[UP] flip: 2056, stem: 16501, fault:9388. flip_cnt: 4, stem_cnt: 1447, fault_cnt:1567 -[UP] flip: 565, stem: 16120, fault:9388. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1569 -[UP] flip: 0, stem: 16761, fault:9616. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1599 -[UP] flip: 5004, stem: 16380, fault:9635. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1602 -[UP] flip: 0, stem: 17479, fault:9635. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1602 -[UP] flip: 3805, stem: 17959, fault:9597. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1599 -[UP] flip: 0, stem: 18340, fault:9597. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1599 -[UP] flip: 4654, stem: 18500, fault:9616. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1601 -[UP] flip: 1072, stem: 17460, fault:9730. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1686 -[UP] flip: 1195, stem: 17361, fault:9730. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1683 -[UP] flip: 3056, stem: 15102, fault:9692. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1677 -[UP] flip: 3011, stem: 14383, fault:9692. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1674 -[UP] flip: 0, stem: 14280, fault:9692. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1674 -[UP] flip: 3021, stem: 13858, fault:9654. flip_cnt: 7, stem_cnt: 1450, fault_cnt:1670 -[UP] flip: 2180, stem: 11839, fault:10813. flip_cnt: 4, stem_cnt: 1449, fault_cnt:1886 -[UP] flip: 2411, stem: 11957, fault:10813. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1890 -[UP] flip: 1020, stem: 13137, fault:10813. flip_cnt: 3, stem_cnt: 1451, fault_cnt:1907 -[UP] flip: 3237, stem: 13737, fault:10813. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1905 -[UP] flip: 4204, stem: 13678, fault:10718. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1906 -[UP] flip: 1015, stem: 14298, fault:10718. flip_cnt: 2, stem_cnt: 1450, fault_cnt:1903 -[UP] flip: 2706, stem: 15078, fault:10680. flip_cnt: 7, stem_cnt: 1450, fault_cnt:1899 -[UP] flip: 0, stem: 14339, fault:10604. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1894 -[UP] flip: 0, stem: 14979, fault:10604. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1894 -[UP] flip: 1345, stem: 15618, fault:10547. flip_cnt: 4, stem_cnt: 1450, fault_cnt:1893 -[UP] flip: 0, stem: 16139, fault:10604. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1901 -[UP] flip: 1486, stem: 16679, fault:10566. flip_cnt: 3, stem_cnt: 1449, fault_cnt:1898 -[UP] flip: 0, stem: 17319, fault:10566. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1898 -[UP] flip: 0, stem: 11841, fault:10433. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1872 -[UP] flip: 683, stem: 9740, fault:10376. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1863 -[UP] flip: 1746, stem: 10300, fault:10376. flip_cnt: 3, stem_cnt: 1448, fault_cnt:1860 -[UP] flip: 0, stem: 10860, fault:10376. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1860 -[UP] flip: 1888, stem: 11440, fault:10395. flip_cnt: 4, stem_cnt: 1448, fault_cnt:1858 -[UP] flip: 3888, stem: 12060, fault:10490. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1864 -[UP] flip: 4840, stem: 12281, fault:10395. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1858 -[UP] flip: 2768, stem: 13121, fault:10357. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1855 -[UP] flip: 4405, stem: 13441, fault:10300. flip_cnt: 7, stem_cnt: 1447, fault_cnt:1851 -[UP] flip: 4635, stem: 13601, fault:10357. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1864 -[UP] flip: 2518, stem: 12740, fault:10015. flip_cnt: 4, stem_cnt: 1448, fault_cnt:1774 -[UP] flip: 0, stem: 13240, fault:9939. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1775 -[UP] flip: 4893, stem: 13439, fault:9920. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1773 -[UP] flip: 3607, stem: 13319, fault:9863. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1769 -[UP] flip: 662, stem: 13920, fault:9844. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1764 -[UP] flip: 4369, stem: 14360, fault:9787. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1760 -[UP] flip: 5980, stem: 14740, fault:9787. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1756 -[UP] flip: 2689, stem: 14320, fault:9787. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1752 -[UP] flip: 2606, stem: 14580, fault:9711. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1720 -[UP] flip: 1287, stem: 13422, fault:9787. flip_cnt: 2, stem_cnt: 1446, fault_cnt:1720 -[UP] flip: 4320, stem: 14002, fault:9749. flip_cnt: 7, stem_cnt: 1446, fault_cnt:1716 -[UP] flip: 879, stem: 14382, fault:9692. flip_cnt: 3, stem_cnt: 1446, fault_cnt:1713 -[UP] flip: 3688, stem: 12141, fault:10053. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1799 -[UP] flip: 0, stem: 12981, fault:10053. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1799 -[UP] flip: 0, stem: 13682, fault:10053. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1821 -[UP] flip: 0, stem: 14123, fault:10053. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1821 -[UP] flip: 0, stem: 13824, fault:10186. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1828 -[UP] flip: 0, stem: 14365, fault:10186. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1828 -[UP] flip: 1588, stem: 14025, fault:10205. flip_cnt: 3, stem_cnt: 1443, fault_cnt:1831 -[UP] flip: 3196, stem: 13783, fault:10205. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1832 -[UP] flip: 2766, stem: 14563, fault:10186. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1834 -[UP] flip: 2190, stem: 14724, fault:10015. flip_cnt: 4, stem_cnt: 1444, fault_cnt:1811 -[UP] flip: 0, stem: 15685, fault:10015. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1811 -[UP] flip: 0, stem: 15285, fault:10034. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1808 -[UP] flip: 4518, stem: 15066, fault:10205. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1818 -[UP] flip: 0, stem: 15786, fault:10205. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1818 -[UP] flip: 1323, stem: 16326, fault:10205. flip_cnt: 3, stem_cnt: 1442, fault_cnt:1815 -[UP] flip: 5358, stem: 16286, fault:10205. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1811 -[UP] flip: 885, stem: 16765, fault:10110. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1798 -[UP] flip: 2714, stem: 17525, fault:10110. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1797 -[UP] flip: 3942, stem: 18285, fault:10110. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1795 -[UP] flip: 2818, stem: 18565, fault:10072. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1792 -[UP] flip: 0, stem: 19286, fault:10072. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1782 -[UP] flip: 3246, stem: 19586, fault:10034. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1779 -[UP] flip: 0, stem: 19686, fault:10034. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1779 -[UP] flip: 2911, stem: 20206, fault:9996. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1777 -[UP] flip: 4152, stem: 20786, fault:9996. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1774 -[UP] flip: 4554, stem: 13548, fault:10110. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1772 -[UP] flip: 3293, stem: 13528, fault:10072. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1768 -[UP] flip: 0, stem: 13906, fault:10072. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1768 -[UP] flip: 0, stem: 14946, fault:10072. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1768 -[UP] flip: 0, stem: 15185, fault:10072. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1768 -[UP] flip: 1948, stem: 15786, fault:10072. flip_cnt: 4, stem_cnt: 1442, fault_cnt:1766 -[UP] flip: 1110, stem: 15826, fault:10091. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1763 -[UP] flip: 2807, stem: 16165, fault:10319. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1776 -[UP] flip: 0, stem: 17405, fault:10319. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1770 -[UP] flip: 0, stem: 17004, fault:10319. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1770 -[UP] flip: 0, stem: 18004, fault:10319. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1770 -[UP] flip: 0, stem: 16843, fault:10319. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1768 -[UP] flip: 1304, stem: 16903, fault:10281. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1765 -[UP] flip: 0, stem: 17424, fault:10281. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1765 -[UP] flip: 1168, stem: 18825, fault:10281. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1764 -[UP] flip: 5980, stem: 18625, fault:10224. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1760 -[UP] flip: 1440, stem: 18546, fault:10167. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1757 -[UP] flip: 0, stem: 19027, fault:10167. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1757 -[UP] flip: 0, stem: 20227, fault:10167. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1757 -[UP] flip: 0, stem: 20847, fault:10167. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1757 -[UP] flip: 2949, stem: 21487, fault:10129. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1754 -[UP] flip: 0, stem: 20828, fault:10110. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1747 -[UP] flip: 0, stem: 22148, fault:10110. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1747 -[UP] flip: 0, stem: 23028, fault:10110. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1747 -[UP] flip: 3343, stem: 23990, fault:10072. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1742 -[UP] flip: 1871, stem: 24068, fault:10015. flip_cnt: 3, stem_cnt: 1440, fault_cnt:1739 -[UP] flip: 0, stem: 18389, fault:9749. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1689 -[UP] flip: 4952, stem: 16007, fault:9730. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1685 -[UP] flip: 0, stem: 17107, fault:9730. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1685 -[UP] flip: 0, stem: 17667, fault:9730. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1685 -[UP] flip: 0, stem: 17568, fault:9692. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1681 -[UP] flip: 0, stem: 17608, fault:9692. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1681 -[UP] flip: 1361, stem: 17268, fault:9597. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1676 -[UP] flip: 981, stem: 17107, fault:9673. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1680 -[UP] flip: 4469, stem: 15747, fault:9939. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1717 -[UP] flip: 0, stem: 16348, fault:10034. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1727 -[UP] flip: 0, stem: 17128, fault:10034. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1727 -[UP] flip: 4624, stem: 16007, fault:9996. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1723 -[UP] flip: 4459, stem: 16727, fault:9958. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1720 -[UP] flip: 3278, stem: 15726, fault:9958. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1717 -[UP] flip: 4869, stem: 16106, fault:9901. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1713 -[UP] flip: 4554, stem: 15706, fault:9882. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1709 -[UP] flip: 0, stem: 16707, fault:9825. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1689 -[UP] flip: 5281, stem: 16467, fault:9787. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1686 -[UP] flip: 2006, stem: 16088, fault:9901. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1697 -[UP] flip: 1320, stem: 17009, fault:9901. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1694 -[UP] flip: 0, stem: 17588, fault:9901. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1694 -[UP] flip: 1243, stem: 16927, fault:9882. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1691 -[UP] flip: 2005, stem: 14388, fault:9901. flip_cnt: 3, stem_cnt: 1440, fault_cnt:1685 -[UP] flip: 5016, stem: 14467, fault:9844. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1685 -[UP] flip: 1191, stem: 15469, fault:9863. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1694 -[UP] flip: 1079, stem: 14809, fault:9863. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1691 -[UP] flip: 4987, stem: 13609, fault:9825. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1687 -[UP] flip: 0, stem: 14289, fault:9692. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1669 -[UP] flip: 0, stem: 14550, fault:9692. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1670 -[UP] flip: 776, stem: 14150, fault:9749. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1673 -[UP] flip: 2996, stem: 14710, fault:9749. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1669 -[UP] flip: 0, stem: 14911, fault:9749. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1668 -[UP] flip: 1835, stem: 15211, fault:9749. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1666 -[UP] flip: 3902, stem: 15729, fault:9768. flip_cnt: 4, stem_cnt: 1439, fault_cnt:1669 -[UP] flip: 5069, stem: 16089, fault:9882. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1683 -[UP] flip: 1127, stem: 16409, fault:9901. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1691 -[UP] flip: 5631, stem: 16809, fault:9559. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1559 -[UP] flip: 0, stem: 17389, fault:9559. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1559 -[UP] flip: 906, stem: 17747, fault:9559. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1560 -[UP] flip: 0, stem: 18287, fault:9673. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1574 -[UP] flip: 0, stem: 14881, fault:10718. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1810 -[UP] flip: 2058, stem: 14939, fault:10718. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1812 -[UP] flip: 2866, stem: 15199, fault:11326. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1867 -[UP] flip: 4228, stem: 15679, fault:11307. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1865 -[UP] flip: 721, stem: 16740, fault:11288. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1864 -[UP] flip: 3474, stem: 16560, fault:11288. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1860 -[UP] flip: 3456, stem: 13980, fault:11079. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1851 -[UP] flip: 2815, stem: 13921, fault:11003. flip_cnt: 4, stem_cnt: 1447, fault_cnt:1840 -[UP] flip: 3494, stem: 14081, fault:10946. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1834 -[UP] flip: 3375, stem: 14721, fault:10927. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1827 -[UP] flip: 0, stem: 15141, fault:10927. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1827 -[UP] flip: 0, stem: 15802, fault:10927. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1827 -[UP] flip: 1377, stem: 16123, fault:10908. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1824 -[UP] flip: 2340, stem: 15684, fault:10737. flip_cnt: 3, stem_cnt: 1444, fault_cnt:1804 -[UP] flip: 1859, stem: 15402, fault:10737. flip_cnt: 3, stem_cnt: 1446, fault_cnt:1803 -[UP] flip: 5368, stem: 14822, fault:10699. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1800 -[UP] flip: 3081, stem: 14360, fault:10661. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1796 -[UP] flip: 3375, stem: 14160, fault:10566. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1787 -[UP] flip: 2865, stem: 13778, fault:10490. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1776 -[UP] flip: 2990, stem: 13857, fault:10528. flip_cnt: 7, stem_cnt: 1451, fault_cnt:1777 -[UP] flip: 1495, stem: 13879, fault:10471. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1773 -[UP] flip: 4979, stem: 14559, fault:10433. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1769 -[UP] flip: 5101, stem: 15419, fault:10433. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1766 -[UP] flip: 1003, stem: 16020, fault:10433. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1763 -[UP] flip: 1100, stem: 16540, fault:10433. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1760 -[UP] flip: 3577, stem: 14841, fault:10414. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1765 -[UP] flip: 2231, stem: 14237, fault:10319. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1746 -[UP] flip: 758, stem: 14698, fault:10262. flip_cnt: 2, stem_cnt: 1450, fault_cnt:1743 -[UP] flip: 0, stem: 15400, fault:10243. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1741 -[UP] flip: 5931, stem: 14900, fault:10338. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1766 -[UP] flip: 0, stem: 15560, fault:10338. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1766 -[UP] flip: 4028, stem: 15900, fault:10338. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1767 -[UP] flip: 4923, stem: 16500, fault:10319. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1766 -[UP] flip: 3064, stem: 17040, fault:10262. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1763 -[UP] flip: 1160, stem: 17619, fault:10243. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1760 -[UP] flip: 3719, stem: 18319, fault:10243. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1757 -[UP] flip: 811, stem: 17981, fault:10395. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1785 -[UP] flip: 5143, stem: 17962, fault:10357. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1797 -[UP] flip: 1388, stem: 16862, fault:10433. flip_cnt: 2, stem_cnt: 1446, fault_cnt:1816 -[UP] flip: 2113, stem: 17003, fault:10433. flip_cnt: 4, stem_cnt: 1445, fault_cnt:1814 -[UP] flip: 2374, stem: 17782, fault:10433. flip_cnt: 4, stem_cnt: 1446, fault_cnt:1810 -[UP] flip: 1953, stem: 18602, fault:10414. flip_cnt: 3, stem_cnt: 1446, fault_cnt:1809 -[UP] flip: 4189, stem: 17162, fault:10433. flip_cnt: 7, stem_cnt: 1446, fault_cnt:1810 -[UP] flip: 2844, stem: 16959, fault:10908. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1905 -[UP] flip: 4305, stem: 15880, fault:10889. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1902 -[UP] flip: 4978, stem: 16300, fault:10984. flip_cnt: 7, stem_cnt: 1448, fault_cnt:1921 -[UP] flip: 4944, stem: 15779, fault:10927. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1920 -[UP] flip: 3031, stem: 15758, fault:10813. flip_cnt: 7, stem_cnt: 1450, fault_cnt:1908 -[UP] flip: 2164, stem: 15698, fault:10832. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1901 -[UP] flip: 2307, stem: 15959, fault:10794. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1899 -[UP] flip: 2041, stem: 16081, fault:10737. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1873 -[UP] flip: 2543, stem: 16461, fault:10737. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1868 -[UP] flip: 0, stem: 17101, fault:10737. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1862 -[UP] flip: 0, stem: 17141, fault:10737. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1862 -[UP] flip: 2524, stem: 17361, fault:10737. flip_cnt: 7, stem_cnt: 1447, fault_cnt:1858 -[UP] flip: 4237, stem: 17822, fault:10547. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1784 -[UP] flip: 2866, stem: 17999, fault:10585. flip_cnt: 4, stem_cnt: 1449, fault_cnt:1787 -[UP] flip: 0, stem: 18259, fault:10661. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1792 -[UP] flip: 1072, stem: 19040, fault:10604. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1789 -[UP] flip: 0, stem: 18599, fault:10604. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1789 -[UP] flip: 5638, stem: 18279, fault:10604. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1786 -[UP] flip: 1577, stem: 18739, fault:10604. flip_cnt: 3, stem_cnt: 1449, fault_cnt:1785 -[UP] flip: 4139, stem: 17938, fault:10604. flip_cnt: 7, stem_cnt: 1450, fault_cnt:1779 -[UP] flip: 3034, stem: 17196, fault:10395. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1773 -[UP] flip: 4259, stem: 17915, fault:10566. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1788 -[UP] flip: 0, stem: 18875, fault:11136. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1838 -[UP] flip: 0, stem: 18993, fault:11136. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1838 -[UP] flip: 4919, stem: 18672, fault:11136. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1840 -[UP] flip: 5052, stem: 18093, fault:11212. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1845 -[UP] flip: 3757, stem: 17993, fault:11022. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1830 -[UP] flip: 0, stem: 18253, fault:10965. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1827 -[UP] flip: 3370, stem: 18153, fault:10965. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1825 -[UP] flip: 4941, stem: 16993, fault:10433. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1736 -[UP] flip: 1802, stem: 16693, fault:10395. flip_cnt: 3, stem_cnt: 1455, fault_cnt:1733 -[UP] flip: 2943, stem: 15933, fault:10205. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1708 -[UP] flip: 3007, stem: 15533, fault:10205. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1706 -[UP] flip: 2374, stem: 14133, fault:9920. flip_cnt: 4, stem_cnt: 1455, fault_cnt:1667 -[UP] flip: 1531, stem: 13894, fault:10509. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1802 -[UP] flip: 1393, stem: 13994, fault:10946. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1855 -[UP] flip: 0, stem: 14594, fault:10946. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1855 -[UP] flip: 825, stem: 15495, fault:10946. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1852 -[UP] flip: 4526, stem: 15515, fault:10946. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1848 -[UP] flip: 4292, stem: 14335, fault:10927. flip_cnt: 7, stem_cnt: 1453, fault_cnt:1844 -[UP] flip: 970, stem: 14255, fault:10984. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1845 -[UP] flip: 0, stem: 14575, fault:10984. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1845 -[UP] flip: 1940, stem: 16155, fault:10965. flip_cnt: 3, stem_cnt: 1453, fault_cnt:1844 -[UP] flip: 1416, stem: 17316, fault:10908. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1841 -[UP] flip: 972, stem: 17393, fault:10927. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1844 -[UP] flip: 801, stem: 17372, fault:11060. flip_cnt: 2, stem_cnt: 1456, fault_cnt:1869 -[UP] flip: 2051, stem: 17492, fault:11079. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1871 -[UP] flip: 6623, stem: 18352, fault:11022. flip_cnt: 7, stem_cnt: 1456, fault_cnt:1870 -[UP] flip: 1088, stem: 18371, fault:11079. flip_cnt: 2, stem_cnt: 1457, fault_cnt:1873 -[UP] flip: 3008, stem: 18811, fault:11041. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1879 -[UP] flip: 4928, stem: 17370, fault:11003. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1873 -[UP] flip: 3064, stem: 15992, fault:10984. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1864 -[UP] flip: 1749, stem: 16813, fault:11231. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1901 -[UP] flip: 2071, stem: 16673, fault:11212. flip_cnt: 3, stem_cnt: 1455, fault_cnt:1900 -[UP] flip: 1326, stem: 16793, fault:11155. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1889 -[UP] flip: 3352, stem: 16753, fault:11098. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1886 -[UP] flip: 5579, stem: 15695, fault:10775. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1848 -[UP] flip: 1131, stem: 16635, fault:10775. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1845 -[UP] flip: 2142, stem: 16834, fault:10718. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1844 -[UP] flip: 2960, stem: 17374, fault:10718. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1841 -[UP] flip: 4512, stem: 17933, fault:10604. flip_cnt: 4, stem_cnt: 1455, fault_cnt:1830 -[UP] flip: 6807, stem: 17893, fault:10566. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1827 -[UP] flip: 0, stem: 17393, fault:10547. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1816 -[UP] flip: 2620, stem: 11228, fault:11174. flip_cnt: 3, stem_cnt: 1460, fault_cnt:1884 -[UP] flip: 1169, stem: 11688, fault:11174. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1885 -[UP] flip: 1945, stem: 11548, fault:11269. flip_cnt: 3, stem_cnt: 1460, fault_cnt:1899 -[UP] flip: 0, stem: 12028, fault:11269. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1899 -[UP] flip: 2372, stem: 10288, fault:11459. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1906 -[UP] flip: 2141, stem: 10728, fault:11535. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1919 -[UP] flip: 1159, stem: 10068, fault:11535. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1916 -[UP] flip: 1369, stem: 10129, fault:11516. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1913 -[UP] flip: 3215, stem: 9687, fault:11516. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1916 -[UP] flip: 2831, stem: 10367, fault:11991. flip_cnt: 5, stem_cnt: 1461, fault_cnt:2032 -[UP] flip: 5016, stem: 9907, fault:11991. flip_cnt: 7, stem_cnt: 1461, fault_cnt:2028 -[UP] flip: 1207, stem: 10787, fault:11991. flip_cnt: 2, stem_cnt: 1461, fault_cnt:2016 -[UP] flip: 985, stem: 10968, fault:11991. flip_cnt: 2, stem_cnt: 1460, fault_cnt:2015 -[UP] flip: 4665, stem: 10348, fault:11934. flip_cnt: 5, stem_cnt: 1460, fault_cnt:2008 -[UP] flip: 3359, stem: 9207, fault:11725. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1974 -[UP] flip: 0, stem: 9006, fault:11706. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1980 -[UP] flip: 1395, stem: 8986, fault:11706. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1979 -[UP] flip: 1072, stem: 9246, fault:11687. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1976 -[UP] flip: 4887, stem: 9546, fault:11687. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1976 -[UP] flip: 0, stem: 8966, fault:11706. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1996 -[UP] flip: 1207, stem: 8947, fault:11649. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1993 -[UP] flip: 5192, stem: 9167, fault:11592. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1989 -[UP] flip: 3533, stem: 8987, fault:11592. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1987 -[UP] flip: 902, stem: 8669, fault:11611. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1987 -[UP] flip: 900, stem: 9130, fault:11611. flip_cnt: 2, stem_cnt: 1458, fault_cnt:1984 -[UP] flip: 2715, stem: 8169, fault:11535. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1977 -[UP] flip: 4424, stem: 8409, fault:11497. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1971 -[UP] flip: 6472, stem: 9289, fault:11193. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1929 -[UP] flip: 1398, stem: 10629, fault:11193. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1928 -[UP] flip: 1396, stem: 10408, fault:11193. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1927 -[UP] flip: 4554, stem: 10286, fault:11231. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1964 -[UP] flip: 0, stem: 11287, fault:11231. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1970 -[UP] flip: 4352, stem: 11847, fault:11193. flip_cnt: 7, stem_cnt: 1461, fault_cnt:1966 -[UP] flip: 1890, stem: 12266, fault:11155. flip_cnt: 3, stem_cnt: 1462, fault_cnt:1966 -[UP] flip: 1873, stem: 13486, fault:11136. flip_cnt: 3, stem_cnt: 1462, fault_cnt:1963 -[UP] flip: 3250, stem: 11727, fault:11231. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1966 -[UP] flip: 3691, stem: 11606, fault:11003. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1886 -[UP] flip: 2279, stem: 11206, fault:11060. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1885 -[UP] flip: 2283, stem: 11147, fault:11041. flip_cnt: 4, stem_cnt: 1461, fault_cnt:1880 -[UP] flip: 2831, stem: 11407, fault:11022. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1875 -[UP] flip: 6519, stem: 11747, fault:10984. flip_cnt: 7, stem_cnt: 1461, fault_cnt:1871 -[UP] flip: 4737, stem: 11627, fault:10927. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1862 -[UP] flip: 2033, stem: 11667, fault:10927. flip_cnt: 3, stem_cnt: 1461, fault_cnt:1859 -[UP] flip: 1114, stem: 10725, fault:10946. flip_cnt: 2, stem_cnt: 1463, fault_cnt:1861 -[UP] flip: 2638, stem: 10626, fault:10946. flip_cnt: 4, stem_cnt: 1462, fault_cnt:1859 -[UP] flip: 0, stem: 9606, fault:10946. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1858 -[UP] flip: 0, stem: 9746, fault:10946. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1858 -[UP] flip: 3023, stem: 10246, fault:10946. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1854 -[UP] flip: 6169, stem: 11506, fault:10908. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1848 -[UP] flip: 3525, stem: 9328, fault:10851. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1836 -[UP] flip: 1866, stem: 9008, fault:10794. flip_cnt: 3, stem_cnt: 1460, fault_cnt:1833 -[UP] flip: 4315, stem: 9348, fault:10794. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1831 -[UP] flip: 3009, stem: 9588, fault:10794. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1829 -[UP] flip: 1089, stem: 10249, fault:10623. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1774 -[UP] flip: 4415, stem: 10529, fault:10585. flip_cnt: 5, stem_cnt: 1459, fault_cnt:1771 -[UP] flip: 2525, stem: 11049, fault:10566. flip_cnt: 3, stem_cnt: 1459, fault_cnt:1768 -[UP] flip: 834, stem: 10150, fault:10566. flip_cnt: 2, stem_cnt: 1458, fault_cnt:1765 -[UP] flip: 2484, stem: 10732, fault:10547. flip_cnt: 4, stem_cnt: 1456, fault_cnt:1760 -[UP] flip: 4768, stem: 9830, fault:10699. flip_cnt: 7, stem_cnt: 1458, fault_cnt:1773 -[UP] flip: 898, stem: 9391, fault:10661. flip_cnt: 2, stem_cnt: 1457, fault_cnt:1768 -[UP] flip: 3509, stem: 9111, fault:10642. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1766 -[UP] flip: 3336, stem: 9771, fault:10642. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1764 -[UP] flip: 3134, stem: 10611, fault:10642. flip_cnt: 7, stem_cnt: 1457, fault_cnt:1735 -[UP] flip: 0, stem: 8993, fault:10623. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1736 -[UP] flip: 0, stem: 8912, fault:10832. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1759 -[UP] flip: 0, stem: 8531, fault:10832. flip_cnt: 0, stem_cnt: 1457, fault_cnt:1759 -[UP] flip: 3793, stem: 8589, fault:10832. flip_cnt: 5, stem_cnt: 1459, fault_cnt:1756 -[UP] flip: 4495, stem: 8689, fault:10680. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1730 -[UP] flip: 0, stem: 8909, fault:10680. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1729 -[UP] flip: 1450, stem: 8628, fault:10699. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1730 -[UP] flip: 2467, stem: 8848, fault:11383. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1875 -[UP] flip: 3724, stem: 9368, fault:11383. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1866 -[UP] flip: 2980, stem: 10148, fault:11383. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1864 -[UP] flip: 2222, stem: 10309, fault:11383. flip_cnt: 4, stem_cnt: 1459, fault_cnt:1856 -[UP] flip: 1076, stem: 10730, fault:11383. flip_cnt: 2, stem_cnt: 1458, fault_cnt:1852 -[UP] flip: 888, stem: 10710, fault:11383. flip_cnt: 2, stem_cnt: 1458, fault_cnt:1849 -[UP] flip: 0, stem: 11050, fault:11383. flip_cnt: 0, stem_cnt: 1458, fault_cnt:1849 -[UP] flip: 0, stem: 11509, fault:11592. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1875 -[UP] flip: 1269, stem: 12109, fault:11573. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1872 -[UP] flip: 1753, stem: 12130, fault:11554. flip_cnt: 4, stem_cnt: 1458, fault_cnt:1870 -[UP] flip: 3590, stem: 12310, fault:11554. flip_cnt: 7, stem_cnt: 1458, fault_cnt:1863 -[UP] flip: 3905, stem: 12670, fault:11535. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1859 -[UP] flip: 3300, stem: 12548, fault:11497. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1860 -[UP] flip: 1064, stem: 12988, fault:11535. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1864 -[UP] flip: 2517, stem: 12988, fault:11535. flip_cnt: 3, stem_cnt: 1460, fault_cnt:1859 -[UP] flip: 2211, stem: 13328, fault:11516. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1855 -[UP] flip: 1093, stem: 13028, fault:11516. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1852 -[UP] flip: 2812, stem: 13308, fault:11516. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1848 -[UP] flip: 1197, stem: 14629, fault:8666. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1535 -[UP] flip: 0, stem: 11616, fault:11345. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1791 -[UP] flip: 4516, stem: 12695, fault:11345. flip_cnt: 4, stem_cnt: 1453, fault_cnt:1794 -[UP] flip: 0, stem: 13015, fault:11345. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1795 -[UP] flip: 4656, stem: 13114, fault:11421. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1800 -[UP] flip: 2190, stem: 13292, fault:11421. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1801 -[UP] flip: 3200, stem: 12150, fault:11554. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1871 -[UP] flip: 4499, stem: 12810, fault:11516. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1866 -[UP] flip: 2548, stem: 12369, fault:11991. flip_cnt: 3, stem_cnt: 1459, fault_cnt:1965 -[UP] flip: 2267, stem: 12529, fault:11991. flip_cnt: 4, stem_cnt: 1459, fault_cnt:1963 -[UP] flip: 4766, stem: 12668, fault:11953. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1959 -[UP] flip: 2221, stem: 12507, fault:11953. flip_cnt: 4, stem_cnt: 1461, fault_cnt:1960 -[UP] flip: 3323, stem: 13046, fault:12181. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1992 -[UP] flip: 0, stem: 13226, fault:12181. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1992 -[UP] flip: 6040, stem: 13406, fault:12162. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1991 -[UP] flip: 4093, stem: 13746, fault:12010. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1962 -[UP] flip: 6366, stem: 11666, fault:12086. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1956 -[UP] flip: 5364, stem: 13446, fault:12067. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1952 -[UP] flip: 1334, stem: 10346, fault:12048. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1954 -[UP] flip: 3615, stem: 10386, fault:12010. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1951 -[UP] flip: 0, stem: 10427, fault:12010. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1951 -[UP] flip: 1194, stem: 12608, fault:12010. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1948 -[UP] flip: 4909, stem: 13028, fault:12010. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1946 -[UP] flip: 1904, stem: 11328, fault:12181. flip_cnt: 4, stem_cnt: 1460, fault_cnt:1980 -[UP] flip: 2194, stem: 10989, fault:12181. flip_cnt: 4, stem_cnt: 1459, fault_cnt:1975 -[UP] flip: 3043, stem: 11589, fault:11972. flip_cnt: 5, stem_cnt: 1459, fault_cnt:1919 -[UP] flip: 2774, stem: 11787, fault:11212. flip_cnt: 4, stem_cnt: 1461, fault_cnt:1822 -[UP] flip: 1354, stem: 11167, fault:11003. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1792 -[UP] flip: 3027, stem: 9726, fault:10965. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1789 -[UP] flip: 0, stem: 9966, fault:10965. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1789 -[UP] flip: 1646, stem: 10947, fault:10965. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1788 -[UP] flip: 0, stem: 11487, fault:10965. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1788 -[UP] flip: 2655, stem: 11707, fault:10946. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1786 -[UP] flip: 0, stem: 12507, fault:10927. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1776 -[UP] flip: 3783, stem: 12068, fault:10927. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1774 -[UP] flip: 0, stem: 12828, fault:10927. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1774 -[UP] flip: 0, stem: 12668, fault:10927. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1774 -[UP] flip: 0, stem: 13128, fault:10927. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1774 -[UP] flip: 0, stem: 13189, fault:10927. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1774 -[UP] flip: 0, stem: 13730, fault:10927. flip_cnt: 0, stem_cnt: 1458, fault_cnt:1774 -[UP] flip: 0, stem: 15390, fault:10927. flip_cnt: 0, stem_cnt: 1458, fault_cnt:1774 -[UP] flip: 0, stem: 14587, fault:10984. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1778 -[UP] flip: 5127, stem: 14367, fault:10965. flip_cnt: 7, stem_cnt: 1461, fault_cnt:1779 -[UP] flip: 0, stem: 14287, fault:10965. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1787 -[UP] flip: 2246, stem: 13406, fault:11022. flip_cnt: 4, stem_cnt: 1462, fault_cnt:1786 -[UP] flip: 0, stem: 13446, fault:11193. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1803 -[UP] flip: 0, stem: 13086, fault:11193. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1803 -[UP] flip: 5779, stem: 11986, fault:11155. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1800 -[UP] flip: 1207, stem: 11686, fault:11155. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1799 -[UP] flip: 0, stem: 9547, fault:10756. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1740 -[UP] flip: 3221, stem: 10207, fault:10718. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1737 -[UP] flip: 0, stem: 10087, fault:10718. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1735 -[UP] flip: 0, stem: 10188, fault:10718. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1735 -[UP] flip: 1255, stem: 9967, fault:10737. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1736 -[UP] flip: 3636, stem: 7786, fault:12010. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1878 -[UP] flip: 6093, stem: 8207, fault:11972. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1875 -[UP] flip: 0, stem: 8586, fault:11972. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1875 -[UP] flip: 0, stem: 9604, fault:11972. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1888 -[UP] flip: 1750, stem: 10125, fault:11972. flip_cnt: 2, stem_cnt: 1463, fault_cnt:1887 -[UP] flip: 1620, stem: 10547, fault:11915. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1884 -[UP] flip: 6853, stem: 11187, fault:11858. flip_cnt: 7, stem_cnt: 1461, fault_cnt:1880 -[UP] flip: 0, stem: 10789, fault:11858. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1880 -[UP] flip: 0, stem: 10728, fault:11858. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1880 -[UP] flip: 895, stem: 11109, fault:11858. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1877 -[UP] flip: 0, stem: 12089, fault:11858. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1877 -[UP] flip: 6801, stem: 10629, fault:11839. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1858 -[UP] flip: 0, stem: 10869, fault:11839. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1858 -[UP] flip: 4563, stem: 11668, fault:11858. flip_cnt: 4, stem_cnt: 1460, fault_cnt:1860 -[UP] flip: 4176, stem: 11269, fault:11896. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1901 -[UP] flip: 2037, stem: 12568, fault:11687. flip_cnt: 3, stem_cnt: 1460, fault_cnt:1858 -[UP] flip: 1269, stem: 12089, fault:11915. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1897 -[UP] flip: 1303, stem: 12129, fault:11896. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1894 -[UP] flip: 0, stem: 10308, fault:11858. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1902 -[UP] flip: 0, stem: 10467, fault:11839. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1902 -[UP] flip: 2023, stem: 11107, fault:11953. flip_cnt: 3, stem_cnt: 1461, fault_cnt:1916 -[UP] flip: 6861, stem: 11907, fault:12200. flip_cnt: 7, stem_cnt: 1461, fault_cnt:1980 -[UP] flip: 3444, stem: 11106, fault:12219. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1981 -[UP] flip: 1972, stem: 8945, fault:12295. flip_cnt: 3, stem_cnt: 1463, fault_cnt:2002 -[UP] flip: 2955, stem: 9405, fault:12276. flip_cnt: 5, stem_cnt: 1463, fault_cnt:2000 -[UP] flip: 0, stem: 8926, fault:12295. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1992 -[UP] flip: 5396, stem: 10006, fault:12295. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1990 -[UP] flip: 0, stem: 10246, fault:12295. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1990 -[UP] flip: 3820, stem: 9986, fault:12295. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1986 -[UP] flip: 1795, stem: 9147, fault:12295. flip_cnt: 3, stem_cnt: 1461, fault_cnt:1983 -[UP] flip: 0, stem: 9247, fault:12295. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1980 -[UP] flip: 963, stem: 9106, fault:12295. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1981 -[UP] flip: 1281, stem: 9407, fault:12276. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1980 -[UP] flip: 4550, stem: 9067, fault:12276. flip_cnt: 7, stem_cnt: 1461, fault_cnt:1976 -[UP] flip: 2590, stem: 9266, fault:12523. flip_cnt: 3, stem_cnt: 1462, fault_cnt:1998 -[UP] flip: 1383, stem: 9585, fault:12466. flip_cnt: 2, stem_cnt: 1463, fault_cnt:1996 -[UP] flip: 6754, stem: 11625, fault:12428. flip_cnt: 7, stem_cnt: 1463, fault_cnt:1993 -[UP] flip: 0, stem: 11605, fault:12428. flip_cnt: 0, stem_cnt: 1463, fault_cnt:1993 -[UP] flip: 0, stem: 11825, fault:12466. flip_cnt: 0, stem_cnt: 1463, fault_cnt:1995 -[UP] flip: 1863, stem: 12325, fault:12466. flip_cnt: 3, stem_cnt: 1463, fault_cnt:1994 -[UP] flip: 0, stem: 12725, fault:12466. flip_cnt: 0, stem_cnt: 1463, fault_cnt:1994 -[UP] flip: 4856, stem: 11864, fault:12466. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1991 -[UP] flip: 965, stem: 11964, fault:12523. flip_cnt: 2, stem_cnt: 1464, fault_cnt:1994 -[UP] flip: 0, stem: 12844, fault:12523. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1992 -[UP] flip: 2304, stem: 13144, fault:12523. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1990 -[UP] flip: 4959, stem: 12484, fault:12485. flip_cnt: 7, stem_cnt: 1464, fault_cnt:1979 -[UP] flip: 3782, stem: 12064, fault:12466. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1973 -[UP] flip: 2695, stem: 12404, fault:12428. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1969 -[UP] flip: 0, stem: 12345, fault:12428. flip_cnt: 0, stem_cnt: 1463, fault_cnt:1968 -[UP] flip: 0, stem: 12725, fault:12428. flip_cnt: 0, stem_cnt: 1463, fault_cnt:1968 -[UP] flip: 3301, stem: 11905, fault:12409. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1966 -[UP] flip: 2690, stem: 11105, fault:12428. flip_cnt: 4, stem_cnt: 1463, fault_cnt:1964 -[UP] flip: 2127, stem: 11005, fault:12504. flip_cnt: 3, stem_cnt: 1463, fault_cnt:1978 -[UP] flip: 0, stem: 10786, fault:12504. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1974 -[UP] flip: 1400, stem: 10184, fault:12561. flip_cnt: 2, stem_cnt: 1464, fault_cnt:1976 -[UP] flip: 5516, stem: 9664, fault:12542. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1982 -[UP] flip: 0, stem: 9645, fault:12542. flip_cnt: 0, stem_cnt: 1463, fault_cnt:1985 -[UP] flip: 3717, stem: 10185, fault:12504. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1982 -[UP] flip: 0, stem: 10046, fault:12352. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1954 -[UP] flip: 0, stem: 8768, fault:12238. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1952 -[UP] flip: 0, stem: 9568, fault:12238. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1952 -[UP] flip: 2609, stem: 9648, fault:12257. flip_cnt: 4, stem_cnt: 1460, fault_cnt:1950 -[UP] flip: 0, stem: 10069, fault:12523. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1982 -[UP] flip: 0, stem: 10047, fault:12523. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1982 -[UP] flip: 1779, stem: 10147, fault:12466. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1979 -[UP] flip: 0, stem: 10447, fault:12466. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1979 -[UP] flip: 5516, stem: 10867, fault:12466. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1975 -[UP] flip: 0, stem: 11027, fault:12466. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1975 -[UP] flip: 0, stem: 11226, fault:12466. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1975 -[UP] flip: 0, stem: 11466, fault:12466. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1975 -[UP] flip: 1089, stem: 11686, fault:12466. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1976 -[UP] flip: 1203, stem: 9747, fault:12447. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1975 -[UP] flip: 2529, stem: 9947, fault:12428. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1971 -[UP] flip: 1292, stem: 10326, fault:12409. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1962 -[UP] flip: 4380, stem: 9546, fault:12390. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1958 -[UP] flip: 6217, stem: 10026, fault:12352. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1955 -[UP] flip: 1475, stem: 9425, fault:12561. flip_cnt: 2, stem_cnt: 1463, fault_cnt:1979 -[UP] flip: 0, stem: 9684, fault:12561. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1979 -[UP] flip: 6876, stem: 10104, fault:12561. flip_cnt: 7, stem_cnt: 1464, fault_cnt:1975 -[UP] flip: 0, stem: 11245, fault:12561. flip_cnt: 0, stem_cnt: 1463, fault_cnt:1973 -[UP] flip: 0, stem: 11105, fault:12561. flip_cnt: 0, stem_cnt: 1463, fault_cnt:1973 -[UP] flip: 6222, stem: 11285, fault:12523. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1969 -[UP] flip: 0, stem: 11364, fault:12523. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1969 -[UP] flip: 1335, stem: 10764, fault:12732. flip_cnt: 2, stem_cnt: 1464, fault_cnt:1982 -[UP] flip: 3259, stem: 10524, fault:12713. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1980 -[UP] flip: 1520, stem: 11385, fault:12637. flip_cnt: 2, stem_cnt: 1463, fault_cnt:1973 -[UP] flip: 5560, stem: 11523, fault:12637. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1977 -[UP] flip: 0, stem: 12243, fault:12789. flip_cnt: 0, stem_cnt: 1465, fault_cnt:2042 -[UP] flip: 2265, stem: 10104, fault:12789. flip_cnt: 4, stem_cnt: 1464, fault_cnt:2040 -[UP] flip: 0, stem: 10244, fault:12789. flip_cnt: 0, stem_cnt: 1464, fault_cnt:2040 -[UP] flip: 5520, stem: 10884, fault:12770. flip_cnt: 5, stem_cnt: 1464, fault_cnt:2038 -[UP] flip: 2861, stem: 9365, fault:12770. flip_cnt: 5, stem_cnt: 1463, fault_cnt:2036 -[UP] flip: 3756, stem: 8985, fault:12542. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1998 -[UP] flip: 3754, stem: 9045, fault:12409. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1980 -[UP] flip: 1656, stem: 10426, fault:11649. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1898 -[UP] flip: 1191, stem: 10927, fault:11592. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1895 -[UP] flip: 2908, stem: 11047, fault:11592. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1893 -[UP] flip: 6597, stem: 10388, fault:11516. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1885 -[UP] flip: 1647, stem: 11729, fault:11459. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1882 -[UP] flip: 1648, stem: 11425, fault:11459. flip_cnt: 3, stem_cnt: 1463, fault_cnt:1886 -[UP] flip: 2226, stem: 7724, fault:11535. flip_cnt: 3, stem_cnt: 1464, fault_cnt:1896 -[UP] flip: 3338, stem: 7084, fault:11478. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1893 -[UP] flip: 3765, stem: 7824, fault:11478. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1891 -[UP] flip: 2612, stem: 6984, fault:11421. flip_cnt: 4, stem_cnt: 1464, fault_cnt:1889 -[UP] flip: 3898, stem: 7024, fault:12048. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1971 -[UP] flip: 0, stem: 7044, fault:11972. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1959 -[UP] flip: 4764, stem: 6984, fault:11934. flip_cnt: 7, stem_cnt: 1464, fault_cnt:1955 -[UP] flip: 0, stem: 7725, fault:11934. flip_cnt: 0, stem_cnt: 1463, fault_cnt:1955 -[UP] flip: 2514, stem: 7564, fault:12124. flip_cnt: 4, stem_cnt: 1464, fault_cnt:1979 -[UP] flip: 1200, stem: 7082, fault:12105. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1979 -[UP] flip: 0, stem: 7079, fault:12447. flip_cnt: 0, stem_cnt: 1469, fault_cnt:2036 -[UP] flip: 0, stem: 7317, fault:12447. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2036 -[UP] flip: 0, stem: 7218, fault:12599. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2055 -[UP] flip: 2445, stem: 7379, fault:12580. flip_cnt: 4, stem_cnt: 1469, fault_cnt:2053 -[UP] flip: 0, stem: 7600, fault:12561. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2046 -[UP] flip: 2110, stem: 8800, fault:12542. flip_cnt: 3, stem_cnt: 1468, fault_cnt:2045 -[UP] flip: 0, stem: 8981, fault:12542. flip_cnt: 0, stem_cnt: 1467, fault_cnt:2045 -[UP] flip: 3933, stem: 8421, fault:12523. flip_cnt: 5, stem_cnt: 1467, fault_cnt:2041 -[UP] flip: 5082, stem: 7759, fault:12485. flip_cnt: 7, stem_cnt: 1469, fault_cnt:2035 -[UP] flip: 427, stem: 7361, fault:11858. flip_cnt: 1, stem_cnt: 1467, fault_cnt:1953 -[UP] flip: 0, stem: 8141, fault:11858. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1953 -[UP] flip: 6067, stem: 6301, fault:11839. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1951 -[UP] flip: 1821, stem: 5740, fault:12371. flip_cnt: 2, stem_cnt: 1468, fault_cnt:2029 -[UP] flip: 0, stem: 6000, fault:12580. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2081 -[UP] flip: 7200, stem: 6259, fault:12523. flip_cnt: 7, stem_cnt: 1469, fault_cnt:2077 -[UP] flip: 3133, stem: 6539, fault:12523. flip_cnt: 5, stem_cnt: 1469, fault_cnt:2075 -[UP] flip: 1409, stem: 7080, fault:12466. flip_cnt: 2, stem_cnt: 1468, fault_cnt:2066 -[UP] flip: 3776, stem: 6378, fault:12466. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2068 -[UP] flip: 1743, stem: 6338, fault:12447. flip_cnt: 3, stem_cnt: 1470, fault_cnt:2069 -[UP] flip: 0, stem: 6018, fault:12561. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2080 -[UP] flip: 4985, stem: 5718, fault:12561. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2076 -[UP] flip: 1364, stem: 5878, fault:12542. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2073 -[UP] flip: 2625, stem: 6019, fault:12523. flip_cnt: 4, stem_cnt: 1469, fault_cnt:2071 -[UP] flip: 991, stem: 5578, fault:12466. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2065 -[UP] flip: 1226, stem: 5579, fault:12542. flip_cnt: 2, stem_cnt: 1469, fault_cnt:2075 -[UP] flip: 2636, stem: 5878, fault:12523. flip_cnt: 4, stem_cnt: 1470, fault_cnt:2074 -[UP] flip: 1341, stem: 6058, fault:12523. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2076 -[UP] flip: 3660, stem: 7178, fault:12523. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2073 -[UP] flip: 2067, stem: 8838, fault:12523. flip_cnt: 3, stem_cnt: 1470, fault_cnt:2070 -[UP] flip: 3294, stem: 7518, fault:12523. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2066 -[UP] flip: 2687, stem: 8138, fault:12523. flip_cnt: 3, stem_cnt: 1470, fault_cnt:2058 -[UP] flip: 0, stem: 8458, fault:12523. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2058 -[UP] flip: 2544, stem: 9438, fault:12561. flip_cnt: 4, stem_cnt: 1470, fault_cnt:2062 -[UP] flip: 2361, stem: 9197, fault:12561. flip_cnt: 4, stem_cnt: 1471, fault_cnt:2063 -[UP] flip: 5077, stem: 9797, fault:12504. flip_cnt: 7, stem_cnt: 1471, fault_cnt:2055 -[UP] flip: 0, stem: 9637, fault:12447. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2046 -[UP] flip: 3070, stem: 9237, fault:12428. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2044 -[UP] flip: 1259, stem: 8998, fault:12067. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1983 -[UP] flip: 3786, stem: 9718, fault:12067. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1981 -[UP] flip: 3216, stem: 9678, fault:12067. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1979 -[UP] flip: 3221, stem: 9958, fault:12029. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1976 -[UP] flip: 2288, stem: 8798, fault:11972. flip_cnt: 4, stem_cnt: 1470, fault_cnt:1968 -[UP] flip: 430, stem: 6277, fault:11991. flip_cnt: 1, stem_cnt: 1471, fault_cnt:1969 -[UP] flip: 3152, stem: 5656, fault:12295. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2057 -[UP] flip: 0, stem: 5536, fault:12352. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2061 -[UP] flip: 3391, stem: 4054, fault:12352. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2064 -[UP] flip: 1369, stem: 4195, fault:12333. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2086 -[UP] flip: 1390, stem: 3495, fault:12276. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2083 -[UP] flip: 3656, stem: 2253, fault:12314. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2086 -[UP] flip: 2552, stem: 2714, fault:12523. flip_cnt: 4, stem_cnt: 1474, fault_cnt:2122 -[UP] flip: 1211, stem: 2694, fault:12371. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2096 -[UP] flip: 6067, stem: 2795, fault:12333. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2093 -[UP] flip: 2728, stem: 2814, fault:12371. flip_cnt: 4, stem_cnt: 1474, fault_cnt:2094 -[UP] flip: 0, stem: 2953, fault:12295. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2092 -[UP] flip: 0, stem: 3333, fault:12295. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2092 -[UP] flip: 3976, stem: 2831, fault:12333. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2092 -[UP] flip: 0, stem: 2071, fault:12276. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2082 -[UP] flip: 1426, stem: 3090, fault:12333. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2085 -[UP] flip: 3176, stem: 3070, fault:12333. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2085 -[UP] flip: 3112, stem: 2790, fault:12314. flip_cnt: 4, stem_cnt: 1478, fault_cnt:2083 -[UP] flip: 3726, stem: 3250, fault:12295. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2074 -[UP] flip: 1429, stem: 2389, fault:12238. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2070 -[UP] flip: 0, stem: 2089, fault:12238. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2070 -[UP] flip: 965, stem: 2590, fault:12219. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2067 -[UP] flip: 0, stem: 2490, fault:12219. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2067 -[UP] flip: 5555, stem: 2390, fault:12162. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2063 -[UP] flip: 0, stem: 2569, fault:11782. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2010 -[UP] flip: 7590, stem: 2629, fault:11725. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2006 -[UP] flip: 4170, stem: 2789, fault:11725. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2004 -[UP] flip: 4786, stem: 2369, fault:11706. flip_cnt: 7, stem_cnt: 1479, fault_cnt:1999 -[UP] flip: 2699, stem: 2689, fault:11725. flip_cnt: 4, stem_cnt: 1479, fault_cnt:1995 -[UP] flip: 1601, stem: 1788, fault:12485. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2108 -[UP] flip: 0, stem: 2368, fault:12485. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2108 -[UP] flip: 0, stem: 3249, fault:12485. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2108 -[UP] flip: 0, stem: 3050, fault:12485. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2108 -[UP] flip: 5587, stem: 3229, fault:12428. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2104 -[UP] flip: 0, stem: 2529, fault:12428. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2104 -[UP] flip: 5188, stem: 2909, fault:12390. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2100 -[UP] flip: 0, stem: 3109, fault:12352. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2098 -[UP] flip: 0, stem: 2369, fault:12352. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2098 -[UP] flip: 1772, stem: 1409, fault:12390. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2103 -[UP] flip: 6454, stem: 1709, fault:12390. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2099 -[UP] flip: 0, stem: 1809, fault:12390. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2099 -[UP] flip: 3454, stem: 2169, fault:12371. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2102 -[UP] flip: 1865, stem: 2130, fault:12276. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2086 -[UP] flip: 0, stem: 3230, fault:12276. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2086 -[UP] flip: 0, stem: 3030, fault:12276. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2086 -[UP] flip: 0, stem: 3050, fault:12276. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2086 -[UP] flip: 6570, stem: 3310, fault:12238. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2082 -[UP] flip: 2887, stem: 3388, fault:12238. flip_cnt: 4, stem_cnt: 1480, fault_cnt:2085 -[UP] flip: 0, stem: 2669, fault:12238. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2133 -[UP] flip: 3504, stem: 2569, fault:12200. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2130 -[UP] flip: 6561, stem: 2647, fault:12238. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2159 -[UP] flip: 1995, stem: 3507, fault:12238. flip_cnt: 3, stem_cnt: 1481, fault_cnt:2158 -[UP] flip: 2469, stem: 3165, fault:12238. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2161 -[UP] flip: 1484, stem: 3325, fault:12219. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2164 -[UP] flip: 2668, stem: 2886, fault:12219. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2162 -[UP] flip: 3523, stem: 3726, fault:12219. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2157 -[UP] flip: 1597, stem: 2987, fault:12219. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2154 -[UP] flip: 3928, stem: 2347, fault:12219. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2152 -[UP] flip: 4033, stem: 1725, fault:12238. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2155 -[UP] flip: 1415, stem: 1725, fault:12371. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2165 -[UP] flip: 948, stem: 2206, fault:12371. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2162 -[UP] flip: 4004, stem: 1425, fault:12371. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2159 -[UP] flip: 2552, stem: 1805, fault:12371. flip_cnt: 3, stem_cnt: 1483, fault_cnt:2156 -[UP] flip: 2574, stem: 1926, fault:12447. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2172 -[UP] flip: 1492, stem: 1746, fault:12314. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2159 -[UP] flip: 2392, stem: 1886, fault:12314. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2157 -[UP] flip: 4206, stem: 1766, fault:12314. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2151 -[UP] flip: 4209, stem: 1165, fault:12295. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2153 -[UP] flip: 2396, stem: 1586, fault:12333. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2158 -[UP] flip: 1727, stem: 2026, fault:12314. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2154 -[UP] flip: 4214, stem: 2326, fault:12295. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2150 -[UP] flip: 3829, stem: 1905, fault:12447. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2166 -[UP] flip: 933, stem: 1886, fault:12447. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2148 -[UP] flip: 4014, stem: 2226, fault:12428. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2146 -[UP] flip: 975, stem: 2447, fault:12257. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2092 -[UP] flip: 4054, stem: 1886, fault:12390. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2132 -[UP] flip: 3348, stem: 1645, fault:12352. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2101 -[UP] flip: 5230, stem: 1985, fault:12542. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2179 -[UP] flip: 2852, stem: 3128, fault:12504. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2174 -[UP] flip: 2856, stem: 1744, fault:12561. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2172 -[UP] flip: 1012, stem: 1465, fault:12599. flip_cnt: 1, stem_cnt: 1483, fault_cnt:2191 -[UP] flip: 0, stem: 1565, fault:12561. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2188 -[UP] flip: 1379, stem: 2366, fault:12542. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2185 -[UP] flip: 0, stem: 1926, fault:12542. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2185 -[UP] flip: 4224, stem: 2846, fault:12523. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2182 -[UP] flip: 4222, stem: 3606, fault:12485. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2179 -[UP] flip: 0, stem: 4307, fault:12447. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2177 -[UP] flip: 4228, stem: 3165, fault:12485. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2180 -[UP] flip: 4237, stem: 1303, fault:12637. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2191 -[UP] flip: 1196, stem: 2586, fault:12618. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2190 -[UP] flip: 1198, stem: 1002, fault:12675. flip_cnt: 2, stem_cnt: 1486, fault_cnt:2185 -[UP] flip: 4010, stem: 2865, fault:12675. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2194 -[UP] flip: 4014, stem: 1082, fault:12675. flip_cnt: 4, stem_cnt: 1486, fault_cnt:2196 -[UP] flip: 0, stem: 1423, fault:12694. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2197 -[UP] flip: 7381, stem: 2785, fault:12580. flip_cnt: 9, stem_cnt: 1483, fault_cnt:2171 -[UP] flip: 4695, stem: 1644, fault:12542. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2164 -[UP] flip: 4065, stem: 1564, fault:12561. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2162 -[UP] flip: 4700, stem: 902, fault:12599. flip_cnt: 5, stem_cnt: 1486, fault_cnt:2169 -[UP] flip: 3700, stem: 2444, fault:12599. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2175 -[UP] flip: 1261, stem: 3225, fault:12561. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2166 -[UP] flip: 7078, stem: 3005, fault:12542. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2162 -[UP] flip: 3499, stem: 3585, fault:12523. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2160 -[UP] flip: 0, stem: 3906, fault:12428. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2151 -[UP] flip: 0, stem: 2766, fault:12428. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2151 -[UP] flip: 3381, stem: 2746, fault:12409. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2149 -[UP] flip: 0, stem: 3306, fault:12409. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2149 -[UP] flip: 1121, stem: 3627, fault:12390. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2146 -[UP] flip: 0, stem: 3547, fault:12390. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2146 -[UP] flip: 0, stem: 3707, fault:12390. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2146 -[UP] flip: 3129, stem: 3507, fault:12371. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2144 -[UP] flip: 3514, stem: 2685, fault:12371. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2140 -[UP] flip: 5453, stem: 3045, fault:12523. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2154 -[UP] flip: 0, stem: 3005, fault:12523. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2154 -[UP] flip: 1236, stem: 3386, fault:12504. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2151 -[UP] flip: 0, stem: 3727, fault:12504. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2151 -[UP] flip: 6825, stem: 3867, fault:12485. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2147 -[UP] flip: 4729, stem: 4567, fault:12485. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2143 -[UP] flip: 5469, stem: 3385, fault:12485. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2145 -[UP] flip: 0, stem: 2465, fault:12542. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2156 -[UP] flip: 5954, stem: 2205, fault:12542. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2154 -[UP] flip: 4015, stem: 2045, fault:12504. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2150 -[UP] flip: 5458, stem: 2025, fault:12504. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2147 -[UP] flip: 0, stem: 2705, fault:12504. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2147 -[UP] flip: 0, stem: 2785, fault:12504. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2147 -[UP] flip: 969, stem: 2906, fault:12504. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2148 -[UP] flip: 0, stem: 3266, fault:12504. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2148 -[UP] flip: 2477, stem: 3066, fault:12504. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2145 -[UP] flip: 989, stem: 4287, fault:12504. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2144 -[UP] flip: 6284, stem: 4327, fault:12485. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2140 -[UP] flip: 3150, stem: 4867, fault:12485. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2138 -[UP] flip: 2508, stem: 4867, fault:12447. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2129 -[UP] flip: 5391, stem: 4767, fault:12409. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2126 -[UP] flip: 2821, stem: 4687, fault:12409. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2123 -[UP] flip: 0, stem: 4227, fault:12409. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2123 -[UP] flip: 0, stem: 3707, fault:12409. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2123 -[UP] flip: 5952, stem: 4347, fault:12390. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2120 -[UP] flip: 3107, stem: 4467, fault:12371. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2118 -[UP] flip: 0, stem: 4548, fault:12371. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2118 -[UP] flip: 1082, stem: 4508, fault:12371. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2115 -[UP] flip: 0, stem: 4928, fault:12371. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2115 -[UP] flip: 1299, stem: 6489, fault:12352. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2112 -[UP] flip: 3155, stem: 5567, fault:12352. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2114 -[UP] flip: 5500, stem: 4365, fault:12409. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2140 -[UP] flip: 5991, stem: 3305, fault:12466. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2147 -[UP] flip: 0, stem: 3185, fault:12466. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2147 -[UP] flip: 1702, stem: 3065, fault:12428. flip_cnt: 3, stem_cnt: 1483, fault_cnt:2144 -[UP] flip: 1701, stem: 3785, fault:12409. flip_cnt: 3, stem_cnt: 1483, fault_cnt:2141 -[UP] flip: 0, stem: 4926, fault:12409. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2141 -[UP] flip: 5124, stem: 4486, fault:12409. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2137 -[UP] flip: 1250, stem: 4067, fault:12390. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2132 -[UP] flip: 0, stem: 4167, fault:12390. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2132 -[UP] flip: 1276, stem: 5268, fault:12390. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2129 -[UP] flip: 0, stem: 5408, fault:12390. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2129 -[UP] flip: 1385, stem: 5328, fault:12390. flip_cnt: 3, stem_cnt: 1480, fault_cnt:2128 -[UP] flip: 2433, stem: 5608, fault:12390. flip_cnt: 3, stem_cnt: 1480, fault_cnt:2119 -[UP] flip: 5789, stem: 5428, fault:12371. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2115 -[UP] flip: 1865, stem: 5728, fault:12371. flip_cnt: 3, stem_cnt: 1480, fault_cnt:2114 -[UP] flip: 3790, stem: 5988, fault:12276. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2094 -[UP] flip: 6482, stem: 6208, fault:12219. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2082 -[UP] flip: 0, stem: 6028, fault:12219. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2082 -[UP] flip: 0, stem: 5828, fault:12219. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2082 -[UP] flip: 1356, stem: 5928, fault:12219. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2083 -[UP] flip: 0, stem: 5928, fault:12219. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2085 -[UP] flip: 6338, stem: 4866, fault:12219. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2088 -[UP] flip: 1197, stem: 4786, fault:12352. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2117 -[UP] flip: 3910, stem: 5426, fault:12352. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2118 -[UP] flip: 3920, stem: 5366, fault:12352. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2119 -[UP] flip: 3800, stem: 3444, fault:12352. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2122 -[UP] flip: 3269, stem: 3084, fault:12390. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2132 -[UP] flip: 3899, stem: 3504, fault:12428. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2135 -[UP] flip: 1661, stem: 3345, fault:12428. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2134 -[UP] flip: 3134, stem: 3285, fault:12428. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2131 -[UP] flip: 4975, stem: 3345, fault:12523. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2148 -[UP] flip: 2881, stem: 3625, fault:12523. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2145 -[UP] flip: 4326, stem: 3845, fault:12504. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2141 -[UP] flip: 5837, stem: 3925, fault:12428. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2136 -[UP] flip: 3272, stem: 4085, fault:12428. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2133 -[UP] flip: 6333, stem: 3564, fault:12428. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2130 -[UP] flip: 3144, stem: 3684, fault:12390. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2127 -[UP] flip: 1317, stem: 5525, fault:12276. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2100 -[UP] flip: 3817, stem: 6125, fault:12428. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2112 -[UP] flip: 6691, stem: 5085, fault:12390. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2109 -[UP] flip: 7353, stem: 4305, fault:12371. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2105 -[UP] flip: 3500, stem: 3905, fault:12352. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2103 -[UP] flip: 1668, stem: 4546, fault:12295. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2100 -[UP] flip: 8155, stem: 4926, fault:12238. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2096 -[UP] flip: 4058, stem: 4826, fault:12219. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2094 -[UP] flip: 0, stem: 4665, fault:12219. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2094 -[UP] flip: 1756, stem: 5005, fault:12200. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2093 -[UP] flip: 4044, stem: 4805, fault:12162. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2090 -[UP] flip: 0, stem: 4704, fault:11896. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2048 -[UP] flip: 0, stem: 4385, fault:11896. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2048 -[UP] flip: 1810, stem: 3946, fault:12276. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2103 -[UP] flip: 1731, stem: 5387, fault:12219. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2100 -[UP] flip: 1685, stem: 5367, fault:12162. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2097 -[UP] flip: 6727, stem: 4587, fault:12124. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2093 -[UP] flip: 2505, stem: 4087, fault:12105. flip_cnt: 3, stem_cnt: 1481, fault_cnt:2090 -[UP] flip: 3925, stem: 4347, fault:12086. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2088 -[UP] flip: 2385, stem: 4187, fault:12086. flip_cnt: 3, stem_cnt: 1481, fault_cnt:2087 -[UP] flip: 2354, stem: 4367, fault:12086. flip_cnt: 3, stem_cnt: 1481, fault_cnt:2086 -[UP] flip: 2703, stem: 4387, fault:11877. flip_cnt: 3, stem_cnt: 1481, fault_cnt:2049 -[UP] flip: 1679, stem: 4268, fault:11858. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2046 -[UP] flip: 4065, stem: 2905, fault:11877. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2049 -[UP] flip: 4362, stem: 2743, fault:12333. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2140 -[UP] flip: 2664, stem: 3143, fault:12466. flip_cnt: 3, stem_cnt: 1485, fault_cnt:2170 -[UP] flip: 1770, stem: 3224, fault:12466. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2169 -[UP] flip: 1558, stem: 2723, fault:12485. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2170 -[UP] flip: 5387, stem: 3262, fault:12485. flip_cnt: 7, stem_cnt: 1486, fault_cnt:2166 -[UP] flip: 1671, stem: 4484, fault:12561. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2172 -[UP] flip: 4587, stem: 3342, fault:12561. flip_cnt: 5, stem_cnt: 1486, fault_cnt:2173 -[UP] flip: 8421, stem: 4384, fault:12542. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2171 -[UP] flip: 8428, stem: 3422, fault:12523. flip_cnt: 7, stem_cnt: 1486, fault_cnt:2169 -[UP] flip: 8314, stem: 4023, fault:12542. flip_cnt: 6, stem_cnt: 1485, fault_cnt:2171 -[UP] flip: 4306, stem: 2761, fault:12561. flip_cnt: 4, stem_cnt: 1487, fault_cnt:2174 -[UP] flip: 6116, stem: 3963, fault:12561. flip_cnt: 7, stem_cnt: 1485, fault_cnt:2177 -[UP] flip: 3618, stem: 2801, fault:12561. flip_cnt: 4, stem_cnt: 1487, fault_cnt:2178 -[UP] flip: 3733, stem: 5424, fault:12599. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2178 -[UP] flip: 8475, stem: 5844, fault:12561. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2171 -[UP] flip: 4552, stem: 5984, fault:12542. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2168 -[UP] flip: 0, stem: 5565, fault:12390. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2158 -[UP] flip: 0, stem: 5605, fault:12390. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2158 -[UP] flip: 4551, stem: 5385, fault:12352. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2155 -[UP] flip: 1770, stem: 6206, fault:12352. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2154 -[UP] flip: 0, stem: 6326, fault:12352. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2154 -[UP] flip: 4453, stem: 4763, fault:12371. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2157 -[UP] flip: 4096, stem: 5203, fault:12523. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2174 -[UP] flip: 4557, stem: 3021, fault:12561. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2177 -[UP] flip: 6999, stem: 4043, fault:12599. flip_cnt: 9, stem_cnt: 1485, fault_cnt:2177 -[UP] flip: 7007, stem: 3061, fault:12618. flip_cnt: 9, stem_cnt: 1487, fault_cnt:2175 -[UP] flip: 5215, stem: 3883, fault:12618. flip_cnt: 4, stem_cnt: 1485, fault_cnt:2178 -[UP] flip: 2908, stem: 3463, fault:12542. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2164 -[UP] flip: 1170, stem: 3464, fault:12542. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2161 -[UP] flip: 4564, stem: 3824, fault:12542. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2157 -[UP] flip: 7069, stem: 4364, fault:12542. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2151 -[UP] flip: 1192, stem: 4764, fault:12561. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2152 -[UP] flip: 6078, stem: 4404, fault:12618. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2158 -[UP] flip: 0, stem: 4144, fault:12618. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2158 -[UP] flip: 1393, stem: 4565, fault:12618. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2155 -[UP] flip: 0, stem: 4086, fault:12618. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2155 -[UP] flip: 4995, stem: 4086, fault:12618. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2151 -[UP] flip: 0, stem: 4226, fault:12618. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2151 -[UP] flip: 4702, stem: 4186, fault:12618. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2147 -[UP] flip: 0, stem: 4686, fault:12618. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2145 -[UP] flip: 6293, stem: 5326, fault:12618. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2143 -[UP] flip: 0, stem: 5046, fault:12618. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2143 -[UP] flip: 0, stem: 4786, fault:12618. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2143 -[UP] flip: 7210, stem: 4846, fault:12694. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2161 -[UP] flip: 1491, stem: 4167, fault:12618. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2140 -[UP] flip: 0, stem: 4488, fault:12618. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2140 -[UP] flip: 3702, stem: 4628, fault:12580. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2137 -[UP] flip: 0, stem: 1267, fault:12637. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2157 -[UP] flip: 0, stem: 1727, fault:12637. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2157 -[UP] flip: 0, stem: 1607, fault:12637. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2157 -[UP] flip: 3847, stem: 1527, fault:12637. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2154 -[UP] flip: 4200, stem: 1687, fault:12599. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2151 -[UP] flip: 0, stem: 2307, fault:12599. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2150 -[UP] flip: 0, stem: 2328, fault:12599. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2150 -[UP] flip: 4969, stem: 3308, fault:12599. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2146 -[UP] flip: 0, stem: 2129, fault:12713. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2154 -[UP] flip: 3350, stem: 2149, fault:12732. flip_cnt: 4, stem_cnt: 1479, fault_cnt:2150 -[UP] flip: 1576, stem: 2770, fault:12713. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2149 -[UP] flip: 3866, stem: 2850, fault:12694. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2147 -[UP] flip: 1453, stem: 2249, fault:12675. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2146 -[UP] flip: 4980, stem: 2549, fault:12637. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2142 -[UP] flip: 2191, stem: 2407, fault:12618. flip_cnt: 3, stem_cnt: 1481, fault_cnt:2141 -[UP] flip: 3098, stem: 2467, fault:12656. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2141 -[UP] flip: 4217, stem: 1965, fault:12694. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2144 -[UP] flip: 0, stem: 1885, fault:12713. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2166 -[UP] flip: 1344, stem: 1646, fault:12713. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2163 -[UP] flip: 0, stem: 2366, fault:12713. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2163 -[UP] flip: 2045, stem: 1145, fault:12808. flip_cnt: 3, stem_cnt: 1483, fault_cnt:2178 -[UP] flip: 2602, stem: 1825, fault:12770. flip_cnt: 3, stem_cnt: 1483, fault_cnt:2173 -[UP] flip: 2380, stem: 1563, fault:12789. flip_cnt: 3, stem_cnt: 1485, fault_cnt:2174 -[UP] flip: 2422, stem: 743, fault:12827. flip_cnt: 4, stem_cnt: 1485, fault_cnt:2183 -[UP] flip: 1871, stem: 823, fault:12827. flip_cnt: 3, stem_cnt: 1485, fault_cnt:2190 -[UP] flip: 1346, stem: 1062, fault:12827. flip_cnt: 2, stem_cnt: 1486, fault_cnt:2192 -[UP] flip: 4158, stem: 522, fault:12789. flip_cnt: 5, stem_cnt: 1486, fault_cnt:2197 -[UP] flip: 2806, stem: 1843, fault:12789. flip_cnt: 4, stem_cnt: 1485, fault_cnt:2195 -[UP] flip: 1619, stem: 2383, fault:12770. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2191 -[UP] flip: 1416, stem: 2083, fault:12732. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2188 -[UP] flip: 2387, stem: 1944, fault:12713. flip_cnt: 3, stem_cnt: 1484, fault_cnt:2187 -[UP] flip: 0, stem: 1903, fault:12713. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2187 -[UP] flip: 3371, stem: 2464, fault:12694. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2185 -[UP] flip: 0, stem: 3144, fault:12694. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2182 -[UP] flip: 1626, stem: 1503, fault:12637. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2179 -[UP] flip: 2420, stem: 1443, fault:12618. flip_cnt: 3, stem_cnt: 1485, fault_cnt:2178 -[UP] flip: 0, stem: 823, fault:12618. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2178 -[UP] flip: 2341, stem: 722, fault:12637. flip_cnt: 4, stem_cnt: 1486, fault_cnt:2181 -[UP] flip: 4045, stem: 0, fault:12713. flip_cnt: 5, stem_cnt: 1488, fault_cnt:2200 -FIND SOLUTION! -[SOL] flip: 0, stem: 0, fault:12713. flip_cnt: 0, stem_cnt: 1488, fault_cnt:2203 -coverage: 0.7994 pattern: 3 before: 1652 now: 982 -checking valid circuit ... result: 1. -local search! -[UP] flip: 0, stem: 7245, fault:103. flip_cnt: 0, stem_cnt: 1143, fault_cnt:417 -[UP] flip: 4, stem: 4368, fault:577. flip_cnt: 2, stem_cnt: 1280, fault_cnt:1357 -[UP] flip: 4, stem: 4791, fault:659. flip_cnt: 3, stem_cnt: 1317, fault_cnt:1235 -[UP] flip: 21, stem: 4622, fault:706. flip_cnt: 7, stem_cnt: 1326, fault_cnt:1049 -[UP] flip: 0, stem: 4671, fault:889. flip_cnt: 0, stem_cnt: 1337, fault_cnt:1131 -[UP] flip: 18, stem: 5279, fault:1046. flip_cnt: 5, stem_cnt: 1349, fault_cnt:1178 -[UP] flip: 11, stem: 5343, fault:1163. flip_cnt: 5, stem_cnt: 1345, fault_cnt:1185 -[UP] flip: 0, stem: 5636, fault:1034. flip_cnt: 0, stem_cnt: 1352, fault_cnt:1010 -[UP] flip: 13, stem: 6081, fault:1508. flip_cnt: 4, stem_cnt: 1347, fault_cnt:1221 -[UP] flip: 0, stem: 6214, fault:1968. flip_cnt: 0, stem_cnt: 1354, fault_cnt:1374 -[UP] flip: 8, stem: 6489, fault:2619. flip_cnt: 2, stem_cnt: 1359, fault_cnt:1529 -[UP] flip: 7, stem: 6625, fault:2702. flip_cnt: 4, stem_cnt: 1343, fault_cnt:1367 -[UP] flip: 50, stem: 7633, fault:2842. flip_cnt: 7, stem_cnt: 1355, fault_cnt:1324 -[UP] flip: 9, stem: 9456, fault:2518. flip_cnt: 4, stem_cnt: 1352, fault_cnt:1173 -[UP] flip: 17, stem: 7649, fault:3124. flip_cnt: 2, stem_cnt: 1339, fault_cnt:1356 -[UP] flip: 0, stem: 8684, fault:3142. flip_cnt: 0, stem_cnt: 1344, fault_cnt:1342 -[UP] flip: 0, stem: 8425, fault:2945. flip_cnt: 0, stem_cnt: 1363, fault_cnt:1294 -[UP] flip: 65, stem: 8499, fault:3061. flip_cnt: 7, stem_cnt: 1369, fault_cnt:1295 -[UP] flip: 0, stem: 7743, fault:3449. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1413 -[UP] flip: 51, stem: 9583, fault:3435. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1411 -[UP] flip: 50, stem: 8271, fault:2992. flip_cnt: 5, stem_cnt: 1377, fault_cnt:1307 -[UP] flip: 20, stem: 8917, fault:3291. flip_cnt: 5, stem_cnt: 1371, fault_cnt:1316 -[UP] flip: 0, stem: 7988, fault:3604. flip_cnt: 0, stem_cnt: 1380, fault_cnt:1413 -[UP] flip: 68, stem: 8212, fault:3863. flip_cnt: 5, stem_cnt: 1376, fault_cnt:1496 -[UP] flip: 87, stem: 6223, fault:3845. flip_cnt: 4, stem_cnt: 1385, fault_cnt:1453 -[UP] flip: 52, stem: 7482, fault:4216. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1500 -[UP] flip: 26, stem: 7640, fault:4182. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1451 -[UP] flip: 110, stem: 8281, fault:4108. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1437 -[UP] flip: 0, stem: 8543, fault:4441. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1436 -[UP] flip: 0, stem: 7534, fault:3931. flip_cnt: 0, stem_cnt: 1374, fault_cnt:1256 -[UP] flip: 35, stem: 8309, fault:4090. flip_cnt: 2, stem_cnt: 1379, fault_cnt:1320 -[UP] flip: 54, stem: 7295, fault:4481. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1471 -[UP] flip: 48, stem: 8014, fault:3386. flip_cnt: 3, stem_cnt: 1394, fault_cnt:1107 -[UP] flip: 0, stem: 8418, fault:3275. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1079 -[UP] flip: 114, stem: 8072, fault:4185. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1361 -[UP] flip: 136, stem: 8916, fault:4247. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1355 -[UP] flip: 75, stem: 9793, fault:4573. flip_cnt: 3, stem_cnt: 1395, fault_cnt:1418 -[UP] flip: 109, stem: 10332, fault:4858. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1541 -[UP] flip: 137, stem: 11872, fault:4972. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1619 -[UP] flip: 104, stem: 11937, fault:4915. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1579 -[UP] flip: 69, stem: 10542, fault:5515. flip_cnt: 2, stem_cnt: 1386, fault_cnt:1659 -[UP] flip: 52, stem: 11546, fault:5339. flip_cnt: 4, stem_cnt: 1382, fault_cnt:1619 -[UP] flip: 35, stem: 9992, fault:5586. flip_cnt: 2, stem_cnt: 1376, fault_cnt:1637 -[UP] flip: 37, stem: 11451, fault:5662. flip_cnt: 2, stem_cnt: 1377, fault_cnt:1621 -[UP] flip: 211, stem: 9593, fault:5348. flip_cnt: 7, stem_cnt: 1375, fault_cnt:1506 -[UP] flip: 169, stem: 11761, fault:5330. flip_cnt: 5, stem_cnt: 1367, fault_cnt:1503 -[UP] flip: 38, stem: 9730, fault:5011. flip_cnt: 3, stem_cnt: 1378, fault_cnt:1512 -[UP] flip: 131, stem: 9823, fault:4647. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1319 -[UP] flip: 183, stem: 9562, fault:4402. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1391 -[UP] flip: 89, stem: 10223, fault:4402. flip_cnt: 3, stem_cnt: 1385, fault_cnt:1400 -[UP] flip: 89, stem: 11300, fault:4357. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1386 -[UP] flip: 0, stem: 10186, fault:4432. flip_cnt: 0, stem_cnt: 1382, fault_cnt:1551 -[UP] flip: 0, stem: 10942, fault:4759. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1637 -[UP] flip: 0, stem: 11663, fault:4753. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1557 -[UP] flip: 75, stem: 12602, fault:4675. flip_cnt: 4, stem_cnt: 1386, fault_cnt:1554 -[UP] flip: 0, stem: 12525, fault:4321. flip_cnt: 0, stem_cnt: 1383, fault_cnt:1478 -[UP] flip: 0, stem: 12757, fault:3652. flip_cnt: 0, stem_cnt: 1371, fault_cnt:1317 -[UP] flip: 0, stem: 10311, fault:3462. flip_cnt: 0, stem_cnt: 1377, fault_cnt:1302 -[UP] flip: 261, stem: 10709, fault:4058. flip_cnt: 7, stem_cnt: 1379, fault_cnt:1470 -[UP] flip: 0, stem: 9438, fault:4359. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1538 -[UP] flip: 180, stem: 9819, fault:4112. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1455 -[UP] flip: 77, stem: 10035, fault:4221. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1456 -[UP] flip: 106, stem: 11495, fault:4183. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1453 -[UP] flip: 99, stem: 8937, fault:3985. flip_cnt: 4, stem_cnt: 1391, fault_cnt:1391 -[UP] flip: 0, stem: 8873, fault:3701. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1204 -[UP] flip: 0, stem: 10534, fault:3701. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1204 -[UP] flip: 225, stem: 7660, fault:3865. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1364 -[UP] flip: 254, stem: 8899, fault:3896. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1383 -[UP] flip: 211, stem: 9201, fault:4029. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1392 -[UP] flip: 221, stem: 8265, fault:4145. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1528 -[UP] flip: 202, stem: 9746, fault:4142. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1522 -[UP] flip: 67, stem: 8171, fault:4076. flip_cnt: 4, stem_cnt: 1397, fault_cnt:1519 -[UP] flip: 141, stem: 8547, fault:4228. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1583 -[UP] flip: 138, stem: 9987, fault:4247. flip_cnt: 3, stem_cnt: 1401, fault_cnt:1582 -[UP] flip: 302, stem: 9292, fault:4084. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1536 -[UP] flip: 122, stem: 10913, fault:4084. flip_cnt: 4, stem_cnt: 1395, fault_cnt:1534 -[UP] flip: 204, stem: 10311, fault:4312. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1613 -[UP] flip: 0, stem: 11892, fault:4255. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1589 -[UP] flip: 161, stem: 10427, fault:4692. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1635 -[UP] flip: 102, stem: 11927, fault:4597. flip_cnt: 3, stem_cnt: 1401, fault_cnt:1612 -[UP] flip: 296, stem: 13427, fault:4597. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1610 -[UP] flip: 200, stem: 14907, fault:4559. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1607 -[UP] flip: 288, stem: 14292, fault:4388. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1558 -[UP] flip: 291, stem: 15730, fault:4274. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1535 -[UP] flip: 389, stem: 11737, fault:4177. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1493 -[UP] flip: 344, stem: 11149, fault:4595. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1582 -[UP] flip: 327, stem: 11816, fault:4557. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1529 -[UP] flip: 53, stem: 10797, fault:4283. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1441 -[UP] flip: 120, stem: 10816, fault:4360. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1392 -[UP] flip: 259, stem: 12416, fault:4341. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1390 -[UP] flip: 206, stem: 13956, fault:4284. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1361 -[UP] flip: 270, stem: 11893, fault:4105. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1168 -[UP] flip: 114, stem: 13453, fault:4086. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1164 -[UP] flip: 0, stem: 12889, fault:4029. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1163 -[UP] flip: 132, stem: 8562, fault:4941. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1585 -[UP] flip: 253, stem: 10022, fault:4941. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1583 -[UP] flip: 0, stem: 11341, fault:4941. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1578 -[UP] flip: 232, stem: 11183, fault:4828. flip_cnt: 4, stem_cnt: 1405, fault_cnt:1448 -[UP] flip: 315, stem: 12763, fault:4828. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1446 -[UP] flip: 275, stem: 13962, fault:4809. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1442 -[UP] flip: 126, stem: 10990, fault:4353. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1270 -[UP] flip: 274, stem: 11928, fault:4543. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1387 -[UP] flip: 124, stem: 13067, fault:5037. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1543 -[UP] flip: 288, stem: 12945, fault:4980. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1527 -[UP] flip: 335, stem: 14264, fault:4885. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1501 -[UP] flip: 337, stem: 15584, fault:4866. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1497 -[UP] flip: 0, stem: 16905, fault:4866. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1495 -[UP] flip: 0, stem: 17086, fault:4714. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1457 -[UP] flip: 381, stem: 18026, fault:4695. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1454 -[UP] flip: 192, stem: 15241, fault:4584. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1485 -[UP] flip: 0, stem: 16582, fault:4546. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1483 -[UP] flip: 135, stem: 16925, fault:4546. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1482 -[UP] flip: 209, stem: 15846, fault:4717. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1547 -[UP] flip: 308, stem: 16264, fault:4736. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1550 -[UP] flip: 88, stem: 17305, fault:4622. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1537 -[UP] flip: 252, stem: 13361, fault:4588. flip_cnt: 4, stem_cnt: 1387, fault_cnt:1443 -[UP] flip: 361, stem: 12438, fault:4612. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1455 -[UP] flip: 422, stem: 12195, fault:4232. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1279 -[UP] flip: 430, stem: 13535, fault:4213. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1279 -[UP] flip: 84, stem: 11537, fault:5144. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1488 -[UP] flip: 0, stem: 11175, fault:5353. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1537 -[UP] flip: 159, stem: 12152, fault:5391. flip_cnt: 3, stem_cnt: 1396, fault_cnt:1548 -[UP] flip: 120, stem: 12635, fault:4099. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1176 -[UP] flip: 69, stem: 13395, fault:4194. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1181 -[UP] flip: 0, stem: 15035, fault:4194. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1181 -[UP] flip: 0, stem: 15935, fault:4194. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1181 -[UP] flip: 329, stem: 12778, fault:4252. flip_cnt: 4, stem_cnt: 1390, fault_cnt:1193 -[UP] flip: 554, stem: 10980, fault:4773. flip_cnt: 7, stem_cnt: 1388, fault_cnt:1362 -[UP] flip: 318, stem: 10842, fault:4241. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1203 -[UP] flip: 348, stem: 11863, fault:4599. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1267 -[UP] flip: 167, stem: 13144, fault:4447. flip_cnt: 3, stem_cnt: 1384, fault_cnt:1233 -[UP] flip: 234, stem: 11755, fault:4959. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1369 -[UP] flip: 169, stem: 13177, fault:4902. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1365 -[UP] flip: 388, stem: 13460, fault:4674. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1287 -[UP] flip: 625, stem: 13160, fault:4579. flip_cnt: 7, stem_cnt: 1388, fault_cnt:1251 -[UP] flip: 451, stem: 13163, fault:4275. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1213 -[UP] flip: 0, stem: 11534, fault:4582. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1281 -[UP] flip: 154, stem: 12415, fault:4772. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1331 -[UP] flip: 96, stem: 10557, fault:5076. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1484 -[UP] flip: 295, stem: 11399, fault:5152. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1500 -[UP] flip: 149, stem: 12057, fault:5095. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1484 -[UP] flip: 343, stem: 12038, fault:5025. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1448 -[UP] flip: 270, stem: 11718, fault:4854. flip_cnt: 3, stem_cnt: 1390, fault_cnt:1418 -[UP] flip: 389, stem: 10638, fault:5234. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1552 -[UP] flip: 626, stem: 12277, fault:5196. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1562 -[UP] flip: 0, stem: 13977, fault:4816. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1508 -[UP] flip: 397, stem: 12080, fault:4816. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1498 -[UP] flip: 0, stem: 16060, fault:4816. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1496 -[UP] flip: 323, stem: 13501, fault:5576. flip_cnt: 3, stem_cnt: 1387, fault_cnt:1642 -[UP] flip: 389, stem: 15301, fault:5576. flip_cnt: 4, stem_cnt: 1387, fault_cnt:1640 -[UP] flip: 420, stem: 14575, fault:5690. flip_cnt: 6, stem_cnt: 1393, fault_cnt:1685 -[UP] flip: 186, stem: 16415, fault:5690. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1684 -[UP] flip: 282, stem: 14439, fault:5462. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1641 -[UP] flip: 112, stem: 15375, fault:5500. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1653 -[UP] flip: 624, stem: 17095, fault:5443. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1653 -[UP] flip: 0, stem: 18655, fault:5329. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1625 -[UP] flip: 551, stem: 17115, fault:4987. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1489 -[UP] flip: 511, stem: 17076, fault:5006. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1532 -[UP] flip: 566, stem: 16870, fault:5025. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1580 -[UP] flip: 740, stem: 18330, fault:5006. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1576 -[UP] flip: 317, stem: 19689, fault:5044. flip_cnt: 4, stem_cnt: 1399, fault_cnt:1581 -[UP] flip: 445, stem: 19086, fault:5253. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1664 -[UP] flip: 257, stem: 20606, fault:5253. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1660 -[UP] flip: 614, stem: 21946, fault:5215. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1650 -[UP] flip: 170, stem: 22748, fault:5006. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1609 -[UP] flip: 821, stem: 19335, fault:4436. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1502 -[UP] flip: 520, stem: 20813, fault:4436. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1504 -[UP] flip: 0, stem: 18156, fault:4294. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1504 -[UP] flip: 518, stem: 18477, fault:4218. flip_cnt: 4, stem_cnt: 1391, fault_cnt:1482 -[UP] flip: 415, stem: 20278, fault:4218. flip_cnt: 4, stem_cnt: 1390, fault_cnt:1479 -[UP] flip: 0, stem: 13272, fault:4408. flip_cnt: 0, stem_cnt: 1376, fault_cnt:1544 -[UP] flip: 96, stem: 14792, fault:4408. flip_cnt: 2, stem_cnt: 1376, fault_cnt:1541 -[UP] flip: 0, stem: 16391, fault:4351. flip_cnt: 0, stem_cnt: 1377, fault_cnt:1532 -[UP] flip: 129, stem: 14746, fault:4446. flip_cnt: 2, stem_cnt: 1382, fault_cnt:1479 -[UP] flip: 327, stem: 14684, fault:4598. flip_cnt: 5, stem_cnt: 1384, fault_cnt:1497 -[UP] flip: 395, stem: 13520, fault:4636. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1502 -[UP] flip: 568, stem: 13858, fault:4446. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1458 -[UP] flip: 404, stem: 14955, fault:4465. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1479 -[UP] flip: 0, stem: 16516, fault:4465. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1479 -[UP] flip: 517, stem: 15990, fault:4484. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1471 -[UP] flip: 147, stem: 14408, fault:4465. flip_cnt: 3, stem_cnt: 1400, fault_cnt:1496 -[UP] flip: 169, stem: 14610, fault:4332. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1499 -[UP] flip: 132, stem: 15872, fault:4123. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1461 -[UP] flip: 175, stem: 17393, fault:4104. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1456 -[UP] flip: 334, stem: 18693, fault:4104. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1453 -[UP] flip: 460, stem: 17196, fault:4256. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1469 -[UP] flip: 461, stem: 17038, fault:4066. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1420 -[UP] flip: 0, stem: 16261, fault:4142. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1471 -[UP] flip: 141, stem: 14016, fault:3971. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1448 -[UP] flip: 222, stem: 15497, fault:3990. flip_cnt: 3, stem_cnt: 1391, fault_cnt:1450 -[UP] flip: 548, stem: 16677, fault:4218. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1497 -[UP] flip: 0, stem: 15400, fault:4199. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1493 -[UP] flip: 0, stem: 17101, fault:4199. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1493 -[UP] flip: 655, stem: 18721, fault:4199. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1491 -[UP] flip: 594, stem: 19784, fault:4199. flip_cnt: 5, stem_cnt: 1384, fault_cnt:1480 -[UP] flip: 214, stem: 18385, fault:4826. flip_cnt: 2, stem_cnt: 1383, fault_cnt:1614 -[UP] flip: 160, stem: 19884, fault:4845. flip_cnt: 2, stem_cnt: 1384, fault_cnt:1617 -[UP] flip: 480, stem: 16594, fault:4218. flip_cnt: 4, stem_cnt: 1374, fault_cnt:1419 -[UP] flip: 0, stem: 18335, fault:4123. flip_cnt: 0, stem_cnt: 1373, fault_cnt:1394 -[UP] flip: 399, stem: 15406, fault:4066. flip_cnt: 5, stem_cnt: 1382, fault_cnt:1373 -[UP] flip: 825, stem: 16448, fault:3762. flip_cnt: 7, stem_cnt: 1380, fault_cnt:1297 -[UP] flip: 0, stem: 17869, fault:3401. flip_cnt: 0, stem_cnt: 1379, fault_cnt:1185 -[UP] flip: 834, stem: 18426, fault:3439. flip_cnt: 7, stem_cnt: 1382, fault_cnt:1199 -[UP] flip: 0, stem: 16888, fault:2926. flip_cnt: 0, stem_cnt: 1380, fault_cnt:1073 -[UP] flip: 810, stem: 16604, fault:3173. flip_cnt: 7, stem_cnt: 1384, fault_cnt:1076 -[UP] flip: 170, stem: 14562, fault:3211. flip_cnt: 2, stem_cnt: 1386, fault_cnt:1066 -[UP] flip: 546, stem: 15259, fault:3895. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1257 -[UP] flip: 562, stem: 15475, fault:4028. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1269 -[UP] flip: 91, stem: 17115, fault:4028. flip_cnt: 1, stem_cnt: 1393, fault_cnt:1266 -[UP] flip: 731, stem: 16038, fault:3439. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1118 -[UP] flip: 817, stem: 16077, fault:3439. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1099 -[UP] flip: 565, stem: 17298, fault:3420. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1134 -[UP] flip: 0, stem: 17134, fault:3553. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1196 -[UP] flip: 0, stem: 15514, fault:3648. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1305 -[UP] flip: 284, stem: 16815, fault:3553. flip_cnt: 4, stem_cnt: 1393, fault_cnt:1289 -[UP] flip: 902, stem: 16796, fault:3705. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1298 -[UP] flip: 858, stem: 18377, fault:3496. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1323 -[UP] flip: 0, stem: 16369, fault:3781. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1402 -[UP] flip: 0, stem: 15626, fault:3838. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1405 -[UP] flip: 500, stem: 16826, fault:3838. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1407 -[UP] flip: 293, stem: 18327, fault:3781. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1406 -[UP] flip: 0, stem: 19226, fault:3781. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1406 -[UP] flip: 525, stem: 19243, fault:3648. flip_cnt: 4, stem_cnt: 1405, fault_cnt:1353 -[UP] flip: 231, stem: 20285, fault:3648. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1364 -[UP] flip: 897, stem: 13884, fault:4237. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1511 -[UP] flip: 335, stem: 15204, fault:4237. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1508 -[UP] flip: 526, stem: 16086, fault:4161. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1492 -[UP] flip: 452, stem: 15926, fault:4275. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1511 -[UP] flip: 730, stem: 16506, fault:4275. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1506 -[UP] flip: 725, stem: 10395, fault:4731. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1558 -[UP] flip: 224, stem: 11416, fault:4731. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1554 -[UP] flip: 260, stem: 12636, fault:4731. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1551 -[UP] flip: 385, stem: 13897, fault:4712. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1548 -[UP] flip: 743, stem: 14156, fault:4731. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1554 -[UP] flip: 705, stem: 15516, fault:4693. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1551 -[UP] flip: 184, stem: 16575, fault:4674. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1550 -[UP] flip: 719, stem: 19315, fault:4674. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1548 -[UP] flip: 299, stem: 18996, fault:4674. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1539 -[UP] flip: 0, stem: 12757, fault:4693. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1593 -[UP] flip: 875, stem: 13837, fault:4655. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1589 -[UP] flip: 222, stem: 14857, fault:3914. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1346 -[UP] flip: 749, stem: 15758, fault:3914. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1337 -[UP] flip: 829, stem: 17178, fault:3895. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1333 -[UP] flip: 555, stem: 16637, fault:3914. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1331 -[UP] flip: 0, stem: 17897, fault:3895. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1330 -[UP] flip: 164, stem: 17497, fault:4522. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1481 -[UP] flip: 943, stem: 18997, fault:4522. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1479 -[UP] flip: 0, stem: 20577, fault:4522. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1479 -[UP] flip: 560, stem: 21878, fault:4503. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1475 -[UP] flip: 838, stem: 15391, fault:3952. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1278 -[UP] flip: 488, stem: 16631, fault:3952. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1276 -[UP] flip: 909, stem: 18290, fault:3952. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1272 -[UP] flip: 528, stem: 18574, fault:3401. flip_cnt: 4, stem_cnt: 1394, fault_cnt:1106 -[UP] flip: 372, stem: 18455, fault:4123. flip_cnt: 4, stem_cnt: 1393, fault_cnt:1431 -[UP] flip: 636, stem: 19815, fault:4712. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1527 -[UP] flip: 972, stem: 21415, fault:4484. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1477 -[UP] flip: 764, stem: 22975, fault:4427. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1457 -[UP] flip: 190, stem: 16279, fault:4047. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1280 -[UP] flip: 1128, stem: 17700, fault:4009. flip_cnt: 7, stem_cnt: 1388, fault_cnt:1276 -[UP] flip: 0, stem: 16397, fault:4275. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1343 -[UP] flip: 817, stem: 16215, fault:4617. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1444 -[UP] flip: 492, stem: 17695, fault:4560. flip_cnt: 3, stem_cnt: 1393, fault_cnt:1441 -[UP] flip: 109, stem: 16587, fault:4845. flip_cnt: 1, stem_cnt: 1401, fault_cnt:1508 -[UP] flip: 491, stem: 17007, fault:5073. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1587 -[UP] flip: 791, stem: 18088, fault:5263. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1644 -[UP] flip: 216, stem: 18787, fault:5244. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1643 -[UP] flip: 353, stem: 20288, fault:5244. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1640 -[UP] flip: 0, stem: 21428, fault:5244. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1637 -[UP] flip: 967, stem: 22828, fault:5225. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1633 -[UP] flip: 0, stem: 15774, fault:4959. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1535 -[UP] flip: 0, stem: 17091, fault:4997. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1549 -[UP] flip: 401, stem: 18371, fault:4997. flip_cnt: 3, stem_cnt: 1397, fault_cnt:1548 -[UP] flip: 0, stem: 19092, fault:4978. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1548 -[UP] flip: 159, stem: 19014, fault:4959. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1538 -[UP] flip: 175, stem: 16768, fault:4788. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1573 -[UP] flip: 0, stem: 16909, fault:4199. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1409 -[UP] flip: 0, stem: 13978, fault:4883. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1602 -[UP] flip: 150, stem: 15439, fault:4883. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1601 -[UP] flip: 295, stem: 16502, fault:4826. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1591 -[UP] flip: 777, stem: 16203, fault:4902. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1581 -[UP] flip: 617, stem: 16644, fault:4807. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1567 -[UP] flip: 0, stem: 17882, fault:4769. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1551 -[UP] flip: 916, stem: 21462, fault:4769. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1548 -[UP] flip: 917, stem: 21602, fault:4370. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1388 -[UP] flip: 0, stem: 18951, fault:4845. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1597 -[UP] flip: 917, stem: 18991, fault:4674. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1565 -[UP] flip: 249, stem: 20351, fault:4598. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1559 -[UP] flip: 604, stem: 22092, fault:4598. flip_cnt: 4, stem_cnt: 1396, fault_cnt:1557 -[UP] flip: 277, stem: 17284, fault:4769. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1670 -[UP] flip: 769, stem: 16164, fault:4693. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1641 -[UP] flip: 272, stem: 16604, fault:4674. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1639 -[UP] flip: 945, stem: 17465, fault:4674. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1636 -[UP] flip: 1037, stem: 13859, fault:4389. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1669 -[UP] flip: 167, stem: 15220, fault:4389. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1666 -[UP] flip: 607, stem: 15659, fault:4370. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1662 -[UP] flip: 0, stem: 15476, fault:4370. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1662 -[UP] flip: 363, stem: 16696, fault:4370. flip_cnt: 3, stem_cnt: 1412, fault_cnt:1661 -[UP] flip: 644, stem: 17656, fault:4370. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1654 -[UP] flip: 513, stem: 18836, fault:4370. flip_cnt: 3, stem_cnt: 1412, fault_cnt:1652 -[UP] flip: 906, stem: 19094, fault:4332. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1646 -[UP] flip: 0, stem: 20394, fault:4332. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1646 -[UP] flip: 630, stem: 21715, fault:4332. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1644 -[UP] flip: 1068, stem: 18959, fault:4066. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1618 -[UP] flip: 550, stem: 19580, fault:4028. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1615 -[UP] flip: 668, stem: 20860, fault:3990. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1612 -[UP] flip: 227, stem: 15892, fault:3952. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1554 -[UP] flip: 553, stem: 17612, fault:3933. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1550 -[UP] flip: 1007, stem: 18452, fault:3895. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1537 -[UP] flip: 280, stem: 19313, fault:3914. flip_cnt: 3, stem_cnt: 1395, fault_cnt:1523 -[UP] flip: 1141, stem: 20933, fault:3933. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1526 -[UP] flip: 0, stem: 21134, fault:3914. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1498 -[UP] flip: 894, stem: 15032, fault:4313. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1585 -[UP] flip: 1095, stem: 14632, fault:4218. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1550 -[UP] flip: 992, stem: 16332, fault:4218. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1538 -[UP] flip: 0, stem: 14229, fault:4313. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1531 -[UP] flip: 397, stem: 15649, fault:4313. flip_cnt: 3, stem_cnt: 1399, fault_cnt:1528 -[UP] flip: 380, stem: 16129, fault:4598. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1563 -[UP] flip: 894, stem: 17529, fault:4807. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1598 -[UP] flip: 1058, stem: 11930, fault:4066. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1368 -[UP] flip: 933, stem: 13350, fault:4009. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1360 -[UP] flip: 244, stem: 10435, fault:3952. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1251 -[UP] flip: 766, stem: 11018, fault:3876. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1239 -[UP] flip: 1496, stem: 12699, fault:3857. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1234 -[UP] flip: 1176, stem: 11420, fault:3971. flip_cnt: 7, stem_cnt: 1388, fault_cnt:1237 -[UP] flip: 261, stem: 11676, fault:3648. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1148 -[UP] flip: 1200, stem: 12736, fault:3667. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1141 -[UP] flip: 0, stem: 16517, fault:3667. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1135 -[UP] flip: 692, stem: 18158, fault:3648. flip_cnt: 4, stem_cnt: 1390, fault_cnt:1133 -[UP] flip: 0, stem: 14575, fault:3344. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1054 -[UP] flip: 1503, stem: 13770, fault:3496. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1066 -[UP] flip: 0, stem: 14211, fault:3287. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1035 -[UP] flip: 0, stem: 15491, fault:3287. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1035 -[UP] flip: 0, stem: 16469, fault:3515. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1205 -[UP] flip: 423, stem: 18090, fault:3515. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1204 -[UP] flip: 869, stem: 15889, fault:3857. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1282 -[UP] flip: 205, stem: 14028, fault:3705. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1222 -[UP] flip: 0, stem: 15608, fault:3705. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1222 -[UP] flip: 376, stem: 17049, fault:3705. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1221 -[UP] flip: 0, stem: 18290, fault:3705. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1221 -[UP] flip: 828, stem: 16166, fault:3781. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1212 -[UP] flip: 0, stem: 13029, fault:3287. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1091 -[UP] flip: 1391, stem: 13427, fault:3762. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1285 -[UP] flip: 382, stem: 14202, fault:3876. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1314 -[UP] flip: 778, stem: 15642, fault:3895. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1321 -[UP] flip: 0, stem: 15140, fault:4655. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1507 -[UP] flip: 574, stem: 15900, fault:4655. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1503 -[UP] flip: 0, stem: 16160, fault:4636. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1491 -[UP] flip: 0, stem: 17140, fault:4636. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1477 -[UP] flip: 813, stem: 14255, fault:4712. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1539 -[UP] flip: 348, stem: 14673, fault:4693. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1541 -[UP] flip: 1309, stem: 13556, fault:4066. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1273 -[UP] flip: 760, stem: 13257, fault:4142. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1240 -[UP] flip: 1010, stem: 14337, fault:4123. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1231 -[UP] flip: 864, stem: 15597, fault:4104. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1227 -[UP] flip: 0, stem: 16757, fault:4066. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1188 -[UP] flip: 0, stem: 14740, fault:3572. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1068 -[UP] flip: 0, stem: 15501, fault:3572. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1067 -[UP] flip: 0, stem: 16762, fault:3572. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1067 -[UP] flip: 1113, stem: 17843, fault:3572. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1065 -[UP] flip: 1084, stem: 17883, fault:3572. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1061 -[UP] flip: 234, stem: 18963, fault:3534. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1056 -[UP] flip: 0, stem: 19144, fault:3534. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1051 -[UP] flip: 1033, stem: 20364, fault:3496. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1048 -[UP] flip: 0, stem: 16439, fault:3382. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1082 -[UP] flip: 1051, stem: 16920, fault:3363. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1088 -[UP] flip: 283, stem: 18281, fault:3344. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1098 -[UP] flip: 0, stem: 15983, fault:3325. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1148 -[UP] flip: 1004, stem: 16883, fault:3287. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1138 -[UP] flip: 1144, stem: 14561, fault:3268. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1094 -[UP] flip: 261, stem: 15202, fault:3268. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1091 -[UP] flip: 548, stem: 15904, fault:3192. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1011 -[UP] flip: 1060, stem: 15565, fault:3078. flip_cnt: 5, stem_cnt: 1403, fault_cnt:990 -[UP] flip: 553, stem: 16503, fault:3078. flip_cnt: 4, stem_cnt: 1405, fault_cnt:988 -[UP] flip: 0, stem: 17763, fault:3078. flip_cnt: 0, stem_cnt: 1405, fault_cnt:998 -[UP] flip: 1073, stem: 19283, fault:3078. flip_cnt: 5, stem_cnt: 1405, fault_cnt:996 -[UP] flip: 1361, stem: 14445, fault:3040. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1110 -[UP] flip: 0, stem: 15806, fault:3040. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1110 -[UP] flip: 0, stem: 16090, fault:3040. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1102 -[UP] flip: 903, stem: 17430, fault:3021. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1095 -[UP] flip: 1236, stem: 18790, fault:3002. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1089 -[UP] flip: 0, stem: 16691, fault:2850. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1044 -[UP] flip: 0, stem: 16631, fault:2964. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1104 -[UP] flip: 443, stem: 18031, fault:2945. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1103 -[UP] flip: 1242, stem: 19211, fault:2945. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1099 -[UP] flip: 691, stem: 14885, fault:3496. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1218 -[UP] flip: 232, stem: 15605, fault:3477. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1212 -[UP] flip: 0, stem: 16906, fault:3477. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1212 -[UP] flip: 1469, stem: 16686, fault:3477. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1208 -[UP] flip: 0, stem: 16903, fault:3990. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1336 -[UP] flip: 0, stem: 18324, fault:3990. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1336 -[UP] flip: 491, stem: 19585, fault:3990. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1333 -[UP] flip: 513, stem: 16965, fault:3819. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1302 -[UP] flip: 632, stem: 18084, fault:3857. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1307 -[UP] flip: 1353, stem: 19464, fault:3838. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1301 -[UP] flip: 1007, stem: 20344, fault:3838. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1297 -[UP] flip: 1439, stem: 19083, fault:3819. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1292 -[UP] flip: 0, stem: 20443, fault:3819. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1293 -[UP] flip: 1010, stem: 21443, fault:3819. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1291 -[UP] flip: 1800, stem: 16366, fault:3857. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1314 -[UP] flip: 1222, stem: 16145, fault:3876. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1304 -[UP] flip: 0, stem: 17626, fault:3838. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1299 -[UP] flip: 310, stem: 17008, fault:3971. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1437 -[UP] flip: 0, stem: 17385, fault:4085. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1465 -[UP] flip: 1557, stem: 18125, fault:4066. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1519 -[UP] flip: 528, stem: 18744, fault:4066. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1516 -[UP] flip: 485, stem: 18684, fault:4066. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1513 -[UP] flip: 414, stem: 15256, fault:4446. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1583 -[UP] flip: 0, stem: 16455, fault:4446. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1583 -[UP] flip: 749, stem: 17094, fault:4503. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1596 -[UP] flip: 0, stem: 14876, fault:4579. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1570 -[UP] flip: 306, stem: 15797, fault:4655. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1575 -[UP] flip: 1454, stem: 16538, fault:4655. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1568 -[UP] flip: 425, stem: 17699, fault:4598. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1554 -[UP] flip: 0, stem: 15981, fault:4503. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1551 -[UP] flip: 744, stem: 17081, fault:4503. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1548 -[UP] flip: 554, stem: 18184, fault:4446. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1544 -[UP] flip: 1164, stem: 18962, fault:4465. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1544 -[UP] flip: 257, stem: 19979, fault:4446. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1543 -[UP] flip: 0, stem: 20460, fault:4446. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1542 -[UP] flip: 453, stem: 18600, fault:4465. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1485 -[UP] flip: 1560, stem: 18103, fault:4351. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1447 -[UP] flip: 0, stem: 19344, fault:4351. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1447 -[UP] flip: 591, stem: 20444, fault:4351. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1444 -[UP] flip: 1665, stem: 21304, fault:4313. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1440 -[UP] flip: 0, stem: 22544, fault:4294. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1434 -[UP] flip: 1114, stem: 23644, fault:4294. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1430 -[UP] flip: 314, stem: 25124, fault:4294. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1429 -[UP] flip: 412, stem: 21526, fault:3534. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1238 -[UP] flip: 1402, stem: 17802, fault:3743. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1355 -[UP] flip: 954, stem: 17861, fault:3743. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1351 -[UP] flip: 0, stem: 18581, fault:3743. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1345 -[UP] flip: 1434, stem: 19379, fault:3762. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1347 -[UP] flip: 0, stem: 17235, fault:3230. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1154 -[UP] flip: 1894, stem: 17832, fault:4199. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1440 -[UP] flip: 263, stem: 18773, fault:4199. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1436 -[UP] flip: 0, stem: 19151, fault:4218. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1433 -[UP] flip: 953, stem: 20151, fault:4218. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1430 -[UP] flip: 0, stem: 21171, fault:4085. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1381 -[UP] flip: 1039, stem: 20868, fault:4636. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1552 -[UP] flip: 0, stem: 16369, fault:4579. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1526 -[UP] flip: 1732, stem: 17769, fault:4579. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1522 -[UP] flip: 671, stem: 19010, fault:4560. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1519 -[UP] flip: 1509, stem: 19450, fault:4522. flip_cnt: 6, stem_cnt: 1418, fault_cnt:1514 -[UP] flip: 822, stem: 20511, fault:4522. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1512 -[UP] flip: 366, stem: 21630, fault:4427. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1493 -[UP] flip: 0, stem: 22270, fault:4446. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1508 -[UP] flip: 1460, stem: 19070, fault:4769. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1609 -[UP] flip: 1578, stem: 19730, fault:4731. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1606 -[UP] flip: 0, stem: 19710, fault:4731. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1606 -[UP] flip: 953, stem: 20650, fault:4731. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1602 -[UP] flip: 0, stem: 21529, fault:4731. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1596 -[UP] flip: 0, stem: 22689, fault:4731. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1596 -[UP] flip: 0, stem: 23369, fault:4731. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1596 -[UP] flip: 0, stem: 24390, fault:4731. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1596 -[UP] flip: 1202, stem: 18292, fault:5016. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1645 -[UP] flip: 1322, stem: 19152, fault:5016. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1643 -[UP] flip: 1507, stem: 17972, fault:5016. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1662 -[UP] flip: 465, stem: 18058, fault:4959. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1647 -[UP] flip: 550, stem: 18977, fault:4940. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1645 -[UP] flip: 0, stem: 21637, fault:4940. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1644 -[UP] flip: 826, stem: 23016, fault:4959. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1646 -[UP] flip: 0, stem: 21475, fault:4978. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1676 -[UP] flip: 1325, stem: 21995, fault:4978. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1680 -[UP] flip: 1422, stem: 21655, fault:5111. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1699 -[UP] flip: 606, stem: 23416, fault:5111. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1696 -[UP] flip: 0, stem: 19040, fault:4731. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1619 -[UP] flip: 1642, stem: 20000, fault:4712. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1615 -[UP] flip: 1782, stem: 21220, fault:4674. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1609 -[UP] flip: 945, stem: 22198, fault:4712. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1612 -[UP] flip: 1382, stem: 23438, fault:4769. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1652 -[UP] flip: 1414, stem: 17500, fault:4902. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1754 -[UP] flip: 1872, stem: 18720, fault:4845. flip_cnt: 6, stem_cnt: 1408, fault_cnt:1748 -[UP] flip: 927, stem: 21380, fault:4902. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1765 -[UP] flip: 0, stem: 21161, fault:4826. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1757 -[UP] flip: 441, stem: 22341, fault:4826. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1756 -[UP] flip: 1798, stem: 22641, fault:4826. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1755 -[UP] flip: 966, stem: 23422, fault:4883. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1768 -[UP] flip: 1702, stem: 21423, fault:4655. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1647 -[UP] flip: 586, stem: 22522, fault:4503. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1634 -[UP] flip: 677, stem: 23762, fault:4503. flip_cnt: 3, stem_cnt: 1406, fault_cnt:1634 -[UP] flip: 1703, stem: 25342, fault:4465. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1630 -[UP] flip: 893, stem: 23100, fault:4807. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1713 -[UP] flip: 1311, stem: 22916, fault:4750. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1707 -[UP] flip: 644, stem: 23414, fault:4750. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1708 -[UP] flip: 0, stem: 24515, fault:4883. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1740 -[UP] flip: 945, stem: 25675, fault:4883. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1738 -[UP] flip: 362, stem: 23996, fault:4769. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1722 -[UP] flip: 1345, stem: 22636, fault:4769. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1723 -[UP] flip: 0, stem: 24176, fault:4769. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1727 -[UP] flip: 709, stem: 24455, fault:4484. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1634 -[UP] flip: 1304, stem: 24975, fault:4465. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1639 -[UP] flip: 1727, stem: 25997, fault:4427. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1629 -[UP] flip: 561, stem: 25797, fault:4408. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1611 -[UP] flip: 1814, stem: 19575, fault:4541. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1696 -[UP] flip: 1018, stem: 20315, fault:4560. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1716 -[UP] flip: 387, stem: 21615, fault:4446. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1703 -[UP] flip: 1697, stem: 22795, fault:4446. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1706 -[UP] flip: 0, stem: 23736, fault:4446. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1706 -[UP] flip: 1857, stem: 24636, fault:4446. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1702 -[UP] flip: 2148, stem: 25982, fault:4446. flip_cnt: 6, stem_cnt: 1406, fault_cnt:1698 -[UP] flip: 1868, stem: 26622, fault:4446. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1694 -[UP] flip: 919, stem: 27262, fault:4446. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1682 -[UP] flip: 1683, stem: 22258, fault:4351. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1677 -[UP] flip: 880, stem: 23715, fault:4294. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1676 -[UP] flip: 2168, stem: 22971, fault:4484. flip_cnt: 6, stem_cnt: 1417, fault_cnt:1707 -[UP] flip: 1039, stem: 24031, fault:4503. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1700 -[UP] flip: 1430, stem: 25129, fault:4503. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1710 -[UP] flip: 472, stem: 25270, fault:4465. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1701 -[UP] flip: 992, stem: 21890, fault:4313. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1675 -[UP] flip: 1043, stem: 22848, fault:4332. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1676 -[UP] flip: 1083, stem: 23848, fault:4313. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1690 -[UP] flip: 920, stem: 24788, fault:4294. flip_cnt: 4, stem_cnt: 1420, fault_cnt:1668 -[UP] flip: 1870, stem: 25706, fault:4294. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1680 -[UP] flip: 0, stem: 24146, fault:4731. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1746 -[UP] flip: 1409, stem: 25206, fault:4731. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1742 -[UP] flip: 1781, stem: 25906, fault:4731. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1737 -[UP] flip: 1221, stem: 26186, fault:4731. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1731 -[UP] flip: 590, stem: 27148, fault:4712. flip_cnt: 4, stem_cnt: 1420, fault_cnt:1729 -[UP] flip: 1529, stem: 26668, fault:4712. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1722 -[UP] flip: 2245, stem: 27008, fault:4674. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1716 -[UP] flip: 0, stem: 22091, fault:4598. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1690 -[UP] flip: 1279, stem: 21574, fault:4579. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1670 -[UP] flip: 587, stem: 22554, fault:4579. flip_cnt: 3, stem_cnt: 1414, fault_cnt:1667 -[UP] flip: 0, stem: 21035, fault:4389. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1657 -[UP] flip: 0, stem: 21576, fault:4389. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1640 -[UP] flip: 547, stem: 22675, fault:4389. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1638 -[UP] flip: 1500, stem: 23435, fault:4446. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1641 -[UP] flip: 0, stem: 23334, fault:4275. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1621 -[UP] flip: 0, stem: 24334, fault:4275. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1621 -[UP] flip: 0, stem: 25454, fault:4275. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1621 -[UP] flip: 1606, stem: 26353, fault:4294. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1578 -[UP] flip: 0, stem: 27593, fault:4294. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1578 -[UP] flip: 0, stem: 25157, fault:4028. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1436 -[UP] flip: 0, stem: 26216, fault:4028. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1436 -[UP] flip: 532, stem: 27415, fault:4028. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1435 -[UP] flip: 1454, stem: 28275, fault:4028. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1431 -[UP] flip: 0, stem: 29136, fault:4028. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1430 -[UP] flip: 1293, stem: 31836, fault:4009. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1428 -[UP] flip: 402, stem: 31996, fault:3971. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1423 -[UP] flip: 0, stem: 23353, fault:3591. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1335 -[UP] flip: 0, stem: 22453, fault:3610. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1337 -[UP] flip: 1091, stem: 23071, fault:3610. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1343 -[UP] flip: 1793, stem: 23991, fault:3648. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1348 -[UP] flip: 992, stem: 21733, fault:3591. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1327 -[UP] flip: 842, stem: 21895, fault:3591. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1325 -[UP] flip: 0, stem: 23014, fault:3534. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1315 -[UP] flip: 819, stem: 23835, fault:3553. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1316 -[UP] flip: 1380, stem: 21066, fault:3629. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1390 -[UP] flip: 1259, stem: 21807, fault:3686. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1394 -[UP] flip: 1462, stem: 22565, fault:3686. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1397 -[UP] flip: 1643, stem: 23287, fault:3686. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1394 -[UP] flip: 610, stem: 24328, fault:3667. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1389 -[UP] flip: 482, stem: 25429, fault:3648. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1386 -[UP] flip: 0, stem: 26689, fault:3648. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1386 -[UP] flip: 380, stem: 26991, fault:3629. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1385 -[UP] flip: 1299, stem: 28111, fault:3629. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1383 -[UP] flip: 1163, stem: 29031, fault:3629. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1381 -[UP] flip: 0, stem: 29831, fault:3629. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1379 -[UP] flip: 2146, stem: 30911, fault:3629. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1375 -[UP] flip: 512, stem: 32372, fault:3629. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1372 -[UP] flip: 455, stem: 33053, fault:3629. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1369 -[UP] flip: 786, stem: 34454, fault:3629. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1367 -[UP] flip: 389, stem: 31314, fault:3857. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1399 -[UP] flip: 1201, stem: 32334, fault:3895. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1492 -[UP] flip: 0, stem: 33154, fault:3819. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1465 -[UP] flip: 995, stem: 34094, fault:3819. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1463 -[UP] flip: 1806, stem: 30972, fault:4408. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1660 -[UP] flip: 1826, stem: 27035, fault:4389. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1659 -[UP] flip: 1639, stem: 27895, fault:4370. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1653 -[UP] flip: 457, stem: 29056, fault:4370. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1643 -[UP] flip: 0, stem: 29715, fault:4370. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1643 -[UP] flip: 368, stem: 30177, fault:4389. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1622 -[UP] flip: 458, stem: 24520, fault:4218. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1588 -[UP] flip: 794, stem: 23359, fault:4237. flip_cnt: 3, stem_cnt: 1409, fault_cnt:1595 -[UP] flip: 0, stem: 24699, fault:4237. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1599 -[UP] flip: 2207, stem: 18804, fault:4066. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1547 -[UP] flip: 547, stem: 20585, fault:4047. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1542 -[UP] flip: 583, stem: 21985, fault:4047. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1539 -[UP] flip: 1168, stem: 23386, fault:4047. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1532 -[UP] flip: 0, stem: 24725, fault:3895. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1459 -[UP] flip: 2000, stem: 16540, fault:4541. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1658 -[UP] flip: 1739, stem: 17158, fault:4408. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1643 -[UP] flip: 0, stem: 18260, fault:4446. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1648 -[UP] flip: 377, stem: 19361, fault:4446. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1647 -[UP] flip: 1096, stem: 20722, fault:4446. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1645 -[UP] flip: 0, stem: 22203, fault:4446. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1642 -[UP] flip: 2357, stem: 23763, fault:4427. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1638 -[UP] flip: 0, stem: 25223, fault:4427. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1638 -[UP] flip: 846, stem: 23904, fault:4427. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1609 -[UP] flip: 400, stem: 24484, fault:4237. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1515 -[UP] flip: 660, stem: 19438, fault:4636. flip_cnt: 3, stem_cnt: 1410, fault_cnt:1678 -[UP] flip: 616, stem: 20778, fault:4636. flip_cnt: 3, stem_cnt: 1410, fault_cnt:1675 -[UP] flip: 1599, stem: 20116, fault:4199. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1489 -[UP] flip: 997, stem: 18872, fault:4313. flip_cnt: 4, stem_cnt: 1416, fault_cnt:1478 -[UP] flip: 0, stem: 17077, fault:4446. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1465 -[UP] flip: 0, stem: 18255, fault:4579. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1485 -[UP] flip: 1373, stem: 19255, fault:4579. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1483 -[UP] flip: 1982, stem: 19615, fault:4560. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1480 -[UP] flip: 1530, stem: 20134, fault:4674. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1475 -[UP] flip: 0, stem: 21454, fault:4674. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1475 -[UP] flip: 1725, stem: 21114, fault:4655. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1472 -[UP] flip: 594, stem: 22274, fault:4579. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1461 -[UP] flip: 639, stem: 22894, fault:4560. flip_cnt: 3, stem_cnt: 1414, fault_cnt:1450 -[UP] flip: 1545, stem: 18776, fault:4522. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1464 -[UP] flip: 491, stem: 19537, fault:4446. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1459 -[UP] flip: 599, stem: 20797, fault:4446. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1457 -[UP] flip: 533, stem: 21778, fault:4446. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1456 -[UP] flip: 954, stem: 23299, fault:4446. flip_cnt: 4, stem_cnt: 1409, fault_cnt:1454 -[UP] flip: 776, stem: 24480, fault:4446. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1449 -[UP] flip: 888, stem: 25400, fault:4427. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1444 -[UP] flip: 951, stem: 26339, fault:4408. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1446 -[UP] flip: 2779, stem: 24377, fault:4332. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1475 -[UP] flip: 1265, stem: 27835, fault:4332. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1477 -[UP] flip: 963, stem: 16858, fault:4522. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1550 -[UP] flip: 1695, stem: 17479, fault:4522. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1550 -[UP] flip: 400, stem: 18499, fault:4522. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1545 -[UP] flip: 1208, stem: 19478, fault:4522. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1547 -[UP] flip: 563, stem: 17877, fault:4351. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1540 -[UP] flip: 206, stem: 19216, fault:4351. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1543 -[UP] flip: 863, stem: 20056, fault:4237. flip_cnt: 3, stem_cnt: 1412, fault_cnt:1527 -[UP] flip: 392, stem: 19534, fault:4237. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1545 -[UP] flip: 1981, stem: 19215, fault:4256. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1577 -[UP] flip: 615, stem: 19576, fault:4218. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1574 -[UP] flip: 2328, stem: 20836, fault:4199. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1572 -[UP] flip: 0, stem: 22056, fault:4199. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1572 -[UP] flip: 1192, stem: 20696, fault:4180. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1556 -[UP] flip: 0, stem: 20454, fault:4180. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1556 -[UP] flip: 403, stem: 21097, fault:4161. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1549 -[UP] flip: 0, stem: 22417, fault:4161. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1549 -[UP] flip: 0, stem: 22474, fault:4237. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1568 -[UP] flip: 1043, stem: 23855, fault:4237. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1566 -[UP] flip: 2516, stem: 23996, fault:4237. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1551 -[UP] flip: 1425, stem: 23993, fault:4199. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1541 -[UP] flip: 506, stem: 23175, fault:4085. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1515 -[UP] flip: 770, stem: 21452, fault:4560. flip_cnt: 3, stem_cnt: 1416, fault_cnt:1658 -[UP] flip: 816, stem: 19031, fault:4522. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1667 -[UP] flip: 512, stem: 19791, fault:4541. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1670 -[UP] flip: 1367, stem: 20931, fault:4541. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1668 -[UP] flip: 0, stem: 22091, fault:4541. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1668 -[UP] flip: 1496, stem: 22212, fault:4427. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1669 -[UP] flip: 0, stem: 22932, fault:4427. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1665 -[UP] flip: 526, stem: 23892, fault:4427. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1662 -[UP] flip: 0, stem: 25372, fault:4427. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1662 -[UP] flip: 2297, stem: 24644, fault:4845. flip_cnt: 6, stem_cnt: 1424, fault_cnt:1706 -[UP] flip: 2730, stem: 25684, fault:4845. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1710 -[UP] flip: 796, stem: 26083, fault:4845. flip_cnt: 4, stem_cnt: 1425, fault_cnt:1713 -[UP] flip: 643, stem: 26724, fault:4845. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1713 -[UP] flip: 2098, stem: 22265, fault:4978. flip_cnt: 7, stem_cnt: 1423, fault_cnt:1726 -[UP] flip: 345, stem: 23146, fault:4959. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1719 -[UP] flip: 1176, stem: 23666, fault:4959. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1716 -[UP] flip: 1564, stem: 24246, fault:4959. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1712 -[UP] flip: 2055, stem: 24384, fault:5092. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1723 -[UP] flip: 467, stem: 25004, fault:5092. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1716 -[UP] flip: 2071, stem: 25003, fault:5168. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1742 -[UP] flip: 731, stem: 25903, fault:4978. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1724 -[UP] flip: 0, stem: 26823, fault:4978. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1724 -[UP] flip: 1278, stem: 27684, fault:4959. flip_cnt: 4, stem_cnt: 1424, fault_cnt:1722 -[UP] flip: 1611, stem: 27225, fault:4940. flip_cnt: 7, stem_cnt: 1423, fault_cnt:1694 -[UP] flip: 0, stem: 28185, fault:4807. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1679 -[UP] flip: 1766, stem: 26745, fault:4807. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1681 -[UP] flip: 525, stem: 27706, fault:4807. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1686 -[UP] flip: 1304, stem: 28806, fault:4788. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1683 -[UP] flip: 2189, stem: 21305, fault:4940. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1721 -[UP] flip: 2597, stem: 22885, fault:4940. flip_cnt: 7, stem_cnt: 1423, fault_cnt:1717 -[UP] flip: 1542, stem: 23924, fault:4940. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1715 -[UP] flip: 590, stem: 24364, fault:4921. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1693 -[UP] flip: 2320, stem: 25524, fault:4921. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1690 -[UP] flip: 1386, stem: 24168, fault:4807. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1682 -[UP] flip: 2119, stem: 25029, fault:4769. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1677 -[UP] flip: 2455, stem: 25749, fault:4712. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1670 -[UP] flip: 1261, stem: 26950, fault:4712. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1668 -[UP] flip: 587, stem: 28071, fault:4655. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1664 -[UP] flip: 0, stem: 29191, fault:4655. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1664 -[UP] flip: 1765, stem: 25391, fault:4313. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1575 -[UP] flip: 493, stem: 26152, fault:4313. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1572 -[UP] flip: 1957, stem: 27452, fault:4275. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1568 -[UP] flip: 296, stem: 21198, fault:4142. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1421 -[UP] flip: 608, stem: 20418, fault:4237. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1428 -[UP] flip: 1376, stem: 21676, fault:4256. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1431 -[UP] flip: 1175, stem: 21214, fault:4845. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1620 -[UP] flip: 0, stem: 21855, fault:4845. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1620 -[UP] flip: 1578, stem: 21331, fault:4788. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1618 -[UP] flip: 2478, stem: 20589, fault:4921. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1689 -[UP] flip: 385, stem: 21710, fault:4902. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1688 -[UP] flip: 0, stem: 20670, fault:4902. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1688 -[UP] flip: 0, stem: 21910, fault:4902. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1688 -[UP] flip: 2156, stem: 22190, fault:4902. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1684 -[UP] flip: 1092, stem: 20825, fault:4807. flip_cnt: 4, stem_cnt: 1423, fault_cnt:1701 -[UP] flip: 1190, stem: 17408, fault:4826. flip_cnt: 4, stem_cnt: 1420, fault_cnt:1707 -[UP] flip: 1927, stem: 18768, fault:4826. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1707 -[UP] flip: 0, stem: 18487, fault:4826. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1704 -[UP] flip: 1815, stem: 19927, fault:4788. flip_cnt: 7, stem_cnt: 1421, fault_cnt:1700 -[UP] flip: 605, stem: 20467, fault:4579. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1629 -[UP] flip: 1263, stem: 21225, fault:4769. flip_cnt: 4, stem_cnt: 1423, fault_cnt:1691 -[UP] flip: 2189, stem: 22045, fault:4769. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1696 -[UP] flip: 0, stem: 20384, fault:4769. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1689 -[UP] flip: 362, stem: 20945, fault:4769. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1692 -[UP] flip: 1520, stem: 21404, fault:4712. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1679 -[UP] flip: 959, stem: 23004, fault:4864. flip_cnt: 4, stem_cnt: 1424, fault_cnt:1692 -[UP] flip: 1901, stem: 24064, fault:4864. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1685 -[UP] flip: 529, stem: 17346, fault:4750. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1671 -[UP] flip: 1822, stem: 18766, fault:4731. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1667 -[UP] flip: 1201, stem: 19946, fault:4750. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1663 -[UP] flip: 0, stem: 19907, fault:4750. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1663 -[UP] flip: 2417, stem: 20827, fault:4750. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1661 -[UP] flip: 2612, stem: 21487, fault:4750. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1659 -[UP] flip: 2390, stem: 22406, fault:4750. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1655 -[UP] flip: 1327, stem: 23425, fault:4788. flip_cnt: 4, stem_cnt: 1423, fault_cnt:1656 -[UP] flip: 235, stem: 24505, fault:4845. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1667 -[UP] flip: 1085, stem: 17669, fault:4693. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1678 -[UP] flip: 2185, stem: 18729, fault:4693. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1666 -[UP] flip: 1458, stem: 19709, fault:4693. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1658 -[UP] flip: 617, stem: 20710, fault:4693. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1655 -[UP] flip: 1418, stem: 21730, fault:4693. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1653 -[UP] flip: 0, stem: 22791, fault:4693. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1653 -[UP] flip: 2898, stem: 23792, fault:4693. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1649 -[UP] flip: 677, stem: 24853, fault:4693. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1648 -[UP] flip: 2260, stem: 18454, fault:4598. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1553 -[UP] flip: 1655, stem: 19754, fault:4598. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1549 -[UP] flip: 0, stem: 20913, fault:4769. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1562 -[UP] flip: 649, stem: 21614, fault:4769. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1559 -[UP] flip: 0, stem: 23115, fault:4769. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1559 -[UP] flip: 0, stem: 18434, fault:4655. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1530 -[UP] flip: 2767, stem: 20154, fault:4655. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1526 -[UP] flip: 947, stem: 21594, fault:4655. flip_cnt: 3, stem_cnt: 1414, fault_cnt:1523 -[UP] flip: 550, stem: 22755, fault:4598. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1520 -[UP] flip: 529, stem: 24436, fault:4598. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1517 -[UP] flip: 0, stem: 16922, fault:4731. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1507 -[UP] flip: 0, stem: 18322, fault:4731. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1507 -[UP] flip: 2633, stem: 19882, fault:4731. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1503 -[UP] flip: 1655, stem: 18942, fault:4731. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1504 -[UP] flip: 839, stem: 19381, fault:4788. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1494 -[UP] flip: 0, stem: 20321, fault:4826. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1500 -[UP] flip: 1802, stem: 21741, fault:4826. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1496 -[UP] flip: 0, stem: 16126, fault:4446. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1411 -[UP] flip: 2889, stem: 17646, fault:4427. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1407 -[UP] flip: 0, stem: 19067, fault:4427. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1407 -[UP] flip: 1796, stem: 20007, fault:4427. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1406 -[UP] flip: 1320, stem: 21347, fault:4446. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1408 -[UP] flip: 1874, stem: 22787, fault:4408. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1405 -[UP] flip: 2862, stem: 24427, fault:4389. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1400 -[UP] flip: 2026, stem: 18541, fault:4655. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1463 -[UP] flip: 0, stem: 19921, fault:4655. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1463 -[UP] flip: 0, stem: 20680, fault:4655. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1463 -[UP] flip: 1250, stem: 21562, fault:4598. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1458 -[UP] flip: 0, stem: 22842, fault:4598. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1458 -[UP] flip: 1787, stem: 24062, fault:4598. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1455 -[UP] flip: 1121, stem: 20704, fault:4427. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1402 -[UP] flip: 489, stem: 20123, fault:4427. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1402 -[UP] flip: 503, stem: 14241, fault:4674. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1417 -[UP] flip: 1524, stem: 15462, fault:4674. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1415 -[UP] flip: 611, stem: 16822, fault:4693. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1418 -[UP] flip: 2782, stem: 15521, fault:5244. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1570 -[UP] flip: 0, stem: 17062, fault:5168. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1551 -[UP] flip: 1575, stem: 18462, fault:5149. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1552 -[UP] flip: 769, stem: 19381, fault:5130. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1619 -[UP] flip: 538, stem: 20701, fault:5130. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1619 -[UP] flip: 0, stem: 21779, fault:5130. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1619 -[UP] flip: 723, stem: 22960, fault:5111. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1616 -[UP] flip: 1329, stem: 24500, fault:5111. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1614 -[UP] flip: 2555, stem: 25260, fault:5111. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1602 -[UP] flip: 885, stem: 23701, fault:5130. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1565 -[UP] flip: 586, stem: 24941, fault:5130. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1562 -[UP] flip: 2226, stem: 22640, fault:5111. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1548 -[UP] flip: 0, stem: 20539, fault:5244. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1550 -[UP] flip: 2936, stem: 21379, fault:5244. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1546 -[UP] flip: 1174, stem: 21738, fault:5206. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1533 -[UP] flip: 0, stem: 23058, fault:5187. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1529 -[UP] flip: 1323, stem: 23619, fault:5206. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1538 -[UP] flip: 0, stem: 24818, fault:5073. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1515 -[UP] flip: 1500, stem: 26098, fault:5073. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1513 -[UP] flip: 1299, stem: 26998, fault:4940. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1463 -[UP] flip: 0, stem: 21233, fault:5016. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1458 -[UP] flip: 1261, stem: 22294, fault:5016. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1456 -[UP] flip: 1851, stem: 18731, fault:5054. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1455 -[UP] flip: 2173, stem: 19470, fault:5054. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1453 -[UP] flip: 2463, stem: 20290, fault:5016. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1449 -[UP] flip: 562, stem: 20950, fault:4997. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1448 -[UP] flip: 600, stem: 21770, fault:4997. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1447 -[UP] flip: 2514, stem: 22410, fault:4997. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1441 -[UP] flip: 1104, stem: 23510, fault:4902. flip_cnt: 3, stem_cnt: 1418, fault_cnt:1423 -[UP] flip: 1179, stem: 23526, fault:4940. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1462 -[UP] flip: 2477, stem: 23386, fault:4940. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1466 -[UP] flip: 552, stem: 20767, fault:4788. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1500 -[UP] flip: 511, stem: 20748, fault:4750. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1496 -[UP] flip: 0, stem: 19311, fault:4674. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1483 -[UP] flip: 981, stem: 19115, fault:4655. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1466 -[UP] flip: 0, stem: 20655, fault:4655. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1459 -[UP] flip: 0, stem: 21396, fault:4655. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1459 -[UP] flip: 643, stem: 22436, fault:4655. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1456 -[UP] flip: 2962, stem: 23496, fault:4636. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1452 -[UP] flip: 738, stem: 23514, fault:4636. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1449 -[UP] flip: 0, stem: 24654, fault:4636. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1447 -[UP] flip: 0, stem: 24994, fault:4636. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1447 -[UP] flip: 0, stem: 24409, fault:5054. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1516 -[UP] flip: 1496, stem: 25087, fault:5282. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1588 -[UP] flip: 486, stem: 26528, fault:5282. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1587 -[UP] flip: 1020, stem: 26229, fault:5529. flip_cnt: 4, stem_cnt: 1419, fault_cnt:1671 -[UP] flip: 718, stem: 26012, fault:5415. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1626 -[UP] flip: 1200, stem: 26872, fault:5358. flip_cnt: 4, stem_cnt: 1416, fault_cnt:1624 -[UP] flip: 1862, stem: 22130, fault:5719. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1723 -[UP] flip: 692, stem: 21850, fault:5966. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1768 -[UP] flip: 826, stem: 22890, fault:5947. flip_cnt: 3, stem_cnt: 1418, fault_cnt:1765 -[UP] flip: 0, stem: 23910, fault:5947. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1765 -[UP] flip: 862, stem: 25030, fault:5947. flip_cnt: 3, stem_cnt: 1418, fault_cnt:1762 -[UP] flip: 2011, stem: 26230, fault:5947. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1758 -[UP] flip: 1505, stem: 27390, fault:5947. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1756 -[UP] flip: 1539, stem: 28390, fault:5947. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1754 -[UP] flip: 985, stem: 25016, fault:5985. flip_cnt: 3, stem_cnt: 1412, fault_cnt:1710 -[UP] flip: 1460, stem: 25936, fault:5985. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1707 -[UP] flip: 1144, stem: 26815, fault:6004. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1708 -[UP] flip: 3168, stem: 27835, fault:5985. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1709 -[UP] flip: 2254, stem: 25412, fault:5985. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1776 -[UP] flip: 0, stem: 18909, fault:5871. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1743 -[UP] flip: 1460, stem: 19908, fault:5871. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1744 -[UP] flip: 2304, stem: 21368, fault:5852. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1740 -[UP] flip: 0, stem: 22349, fault:5833. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1739 -[UP] flip: 2572, stem: 21369, fault:5833. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1735 -[UP] flip: 520, stem: 22028, fault:5833. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1730 -[UP] flip: 0, stem: 22132, fault:5681. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1702 -[UP] flip: 0, stem: 17655, fault:5282. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1581 -[UP] flip: 438, stem: 18393, fault:5301. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1587 -[UP] flip: 2320, stem: 19593, fault:5301. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1583 -[UP] flip: 2661, stem: 20652, fault:5206. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1565 -[UP] flip: 1316, stem: 22413, fault:5187. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1561 -[UP] flip: 0, stem: 23174, fault:5149. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1557 -[UP] flip: 632, stem: 22253, fault:5282. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1553 -[UP] flip: 440, stem: 23392, fault:5301. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1554 -[UP] flip: 0, stem: 24472, fault:5301. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1554 -[UP] flip: 3504, stem: 24932, fault:5225. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1520 -[UP] flip: 2175, stem: 26232, fault:5225. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1516 -[UP] flip: 2042, stem: 27752, fault:5225. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1514 -[UP] flip: 1746, stem: 28392, fault:5206. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1512 -[UP] flip: 2373, stem: 29372, fault:5206. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1508 -[UP] flip: 0, stem: 26572, fault:5282. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1557 -[UP] flip: 2561, stem: 27510, fault:5282. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1555 -[UP] flip: 0, stem: 26832, fault:5244. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1540 -[UP] flip: 1957, stem: 27770, fault:5263. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1542 -[UP] flip: 1285, stem: 28790, fault:5301. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1592 -[UP] flip: 936, stem: 29370, fault:5339. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1599 -[UP] flip: 419, stem: 29770, fault:5320. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1598 -[UP] flip: 2453, stem: 30750, fault:5301. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1596 -[UP] flip: 2224, stem: 32071, fault:5301. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1591 -[UP] flip: 0, stem: 33311, fault:5301. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1591 -[UP] flip: 0, stem: 34551, fault:5301. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1591 -[UP] flip: 1489, stem: 35311, fault:5301. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1589 -[UP] flip: 2825, stem: 34791, fault:5263. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1574 -[UP] flip: 1399, stem: 21315, fault:5092. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1533 -[UP] flip: 2652, stem: 20296, fault:5054. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1537 -[UP] flip: 0, stem: 21756, fault:4959. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1531 -[UP] flip: 567, stem: 22735, fault:4959. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1530 -[UP] flip: 2739, stem: 22855, fault:4959. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1526 -[UP] flip: 2785, stem: 24135, fault:4921. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1521 -[UP] flip: 0, stem: 25596, fault:4921. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1521 -[UP] flip: 0, stem: 26555, fault:4921. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1521 -[UP] flip: 0, stem: 27634, fault:4921. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1521 -[UP] flip: 1111, stem: 28735, fault:4921. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1519 -[UP] flip: 0, stem: 29475, fault:4864. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1516 -[UP] flip: 2772, stem: 25993, fault:4997. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1577 -[UP] flip: 0, stem: 27553, fault:4997. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1577 -[UP] flip: 0, stem: 28672, fault:4997. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1577 -[UP] flip: 2615, stem: 29372, fault:4978. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1575 -[UP] flip: 2908, stem: 23547, fault:5301. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1655 -[UP] flip: 1747, stem: 22367, fault:5225. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1647 -[UP] flip: 1432, stem: 23407, fault:5187. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1650 -[UP] flip: 0, stem: 21731, fault:5263. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1642 -[UP] flip: 3244, stem: 22051, fault:5263. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1643 -[UP] flip: 0, stem: 23932, fault:5263. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1651 -[UP] flip: 1460, stem: 24712, fault:5263. flip_cnt: 4, stem_cnt: 1416, fault_cnt:1649 -[UP] flip: 675, stem: 25553, fault:5263. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1650 -[UP] flip: 2686, stem: 25794, fault:5263. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1643 -[UP] flip: 0, stem: 26916, fault:5263. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1642 -[UP] flip: 1649, stem: 28696, fault:5263. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1640 -[UP] flip: 2520, stem: 18914, fault:5377. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1669 -[UP] flip: 1943, stem: 20114, fault:5377. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1663 -[UP] flip: 0, stem: 20297, fault:5358. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1659 -[UP] flip: 2348, stem: 21897, fault:5339. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1657 -[UP] flip: 2179, stem: 16633, fault:5282. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1592 -[UP] flip: 2256, stem: 17994, fault:5282. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1590 -[UP] flip: 0, stem: 19274, fault:5282. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1590 -[UP] flip: 2774, stem: 20172, fault:5301. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1588 -[UP] flip: 0, stem: 20692, fault:5244. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1577 -[UP] flip: 2501, stem: 18526, fault:5377. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1591 -[UP] flip: 1746, stem: 18866, fault:5377. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1584 -[UP] flip: 1003, stem: 20326, fault:4997. flip_cnt: 3, stem_cnt: 1422, fault_cnt:1440 -[UP] flip: 900, stem: 20505, fault:5035. flip_cnt: 3, stem_cnt: 1423, fault_cnt:1461 -[UP] flip: 3373, stem: 15804, fault:4940. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1450 -[UP] flip: 677, stem: 16287, fault:4883. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1439 -[UP] flip: 3736, stem: 17287, fault:4826. flip_cnt: 7, stem_cnt: 1421, fault_cnt:1432 -[UP] flip: 662, stem: 18207, fault:4826. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1431 -[UP] flip: 1371, stem: 19227, fault:4845. flip_cnt: 4, stem_cnt: 1421, fault_cnt:1427 -[UP] flip: 2968, stem: 20407, fault:4845. flip_cnt: 7, stem_cnt: 1421, fault_cnt:1429 -[UP] flip: 745, stem: 20987, fault:4845. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1427 -[UP] flip: 1968, stem: 21468, fault:4845. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1420 -[UP] flip: 2103, stem: 21611, fault:4826. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1409 -[UP] flip: 1893, stem: 22851, fault:4826. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1403 -[UP] flip: 1619, stem: 21991, fault:4788. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1400 -[UP] flip: 0, stem: 23632, fault:4788. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1400 -[UP] flip: 1946, stem: 24272, fault:4788. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1398 -[UP] flip: 2636, stem: 25372, fault:4788. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1394 -[UP] flip: 0, stem: 24691, fault:4636. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1358 -[UP] flip: 710, stem: 24851, fault:4598. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1351 -[UP] flip: 2769, stem: 25551, fault:4598. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1349 -[UP] flip: 565, stem: 25491, fault:4674. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1374 -[UP] flip: 1489, stem: 26531, fault:4674. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1372 -[UP] flip: 1240, stem: 27209, fault:4693. flip_cnt: 4, stem_cnt: 1419, fault_cnt:1375 -[UP] flip: 2718, stem: 27829, fault:5396. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1611 -[UP] flip: 611, stem: 29190, fault:5339. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1608 -[UP] flip: 821, stem: 29951, fault:5339. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1605 -[UP] flip: 0, stem: 14976, fault:5130. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1437 -[UP] flip: 1975, stem: 16457, fault:5187. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1451 -[UP] flip: 0, stem: 16958, fault:5187. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1446 -[UP] flip: 3258, stem: 18218, fault:5187. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1444 -[UP] flip: 2583, stem: 16455, fault:5377. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1459 -[UP] flip: 2730, stem: 17215, fault:5358. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1449 -[UP] flip: 0, stem: 18096, fault:5377. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1449 -[UP] flip: 1760, stem: 19356, fault:5358. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1447 -[UP] flip: 2549, stem: 21016, fault:5282. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1423 -[UP] flip: 0, stem: 22376, fault:5282. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1423 -[UP] flip: 820, stem: 23416, fault:5282. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1422 -[UP] flip: 0, stem: 23977, fault:5282. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1420 -[UP] flip: 0, stem: 25218, fault:5225. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1416 -[UP] flip: 1612, stem: 25998, fault:5206. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1414 -[UP] flip: 2097, stem: 24990, fault:5586. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1550 -[UP] flip: 0, stem: 25032, fault:5624. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1555 -[UP] flip: 2036, stem: 25972, fault:5624. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1553 -[UP] flip: 839, stem: 18618, fault:5510. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1559 -[UP] flip: 0, stem: 19114, fault:5510. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1569 -[UP] flip: 3150, stem: 17032, fault:5396. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1562 -[UP] flip: 2160, stem: 17732, fault:5396. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1558 -[UP] flip: 1018, stem: 18613, fault:5377. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1551 -[UP] flip: 0, stem: 19533, fault:5377. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1551 -[UP] flip: 1788, stem: 18952, fault:5054. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1522 -[UP] flip: 1574, stem: 20332, fault:5035. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1518 -[UP] flip: 1870, stem: 21412, fault:4731. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1440 -[UP] flip: 941, stem: 21208, fault:5111. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1486 -[UP] flip: 2512, stem: 22308, fault:5187. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1498 -[UP] flip: 1116, stem: 19493, fault:5035. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1441 -[UP] flip: 1559, stem: 20572, fault:5035. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1439 -[UP] flip: 712, stem: 21394, fault:5016. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1438 -[UP] flip: 0, stem: 22394, fault:5016. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1438 -[UP] flip: 732, stem: 23375, fault:5016. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1435 -[UP] flip: 2887, stem: 24453, fault:5016. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1438 -[UP] flip: 0, stem: 25313, fault:5016. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1438 -[UP] flip: 2643, stem: 26653, fault:5016. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1436 -[UP] flip: 2740, stem: 27833, fault:5016. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1434 -[UP] flip: 0, stem: 27275, fault:5035. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1436 -[UP] flip: 2637, stem: 25916, fault:5016. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1415 -[UP] flip: 0, stem: 24575, fault:4978. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1408 -[UP] flip: 788, stem: 25234, fault:4978. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1406 -[UP] flip: 2849, stem: 25394, fault:4978. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1415 -[UP] flip: 1547, stem: 26395, fault:4978. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1413 -[UP] flip: 3149, stem: 26215, fault:4959. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1409 -[UP] flip: 769, stem: 27336, fault:4921. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1389 -[UP] flip: 1612, stem: 23654, fault:5035. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1425 -[UP] flip: 2942, stem: 17672, fault:4408. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1301 -[UP] flip: 583, stem: 18712, fault:4389. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1298 -[UP] flip: 2889, stem: 19912, fault:4389. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1300 -[UP] flip: 0, stem: 21252, fault:4389. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1300 -[UP] flip: 0, stem: 18174, fault:4731. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1341 -[UP] flip: 0, stem: 19313, fault:4731. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1341 -[UP] flip: 524, stem: 18972, fault:4693. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1327 -[UP] flip: 1007, stem: 20553, fault:4636. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1324 -[UP] flip: 2454, stem: 21190, fault:4560. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1319 -[UP] flip: 2026, stem: 20053, fault:5320. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1525 -[UP] flip: 2933, stem: 17894, fault:5472. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1534 -[UP] flip: 1898, stem: 19094, fault:5434. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1530 -[UP] flip: 1093, stem: 20394, fault:5396. flip_cnt: 3, stem_cnt: 1414, fault_cnt:1527 -[UP] flip: 878, stem: 22053, fault:5396. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1526 -[UP] flip: 2886, stem: 22653, fault:5396. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1522 -[UP] flip: 0, stem: 23612, fault:5472. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1534 -[UP] flip: 2707, stem: 24672, fault:5453. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1536 -[UP] flip: 2187, stem: 25772, fault:5453. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1532 -[UP] flip: 0, stem: 25731, fault:5491. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1544 -[UP] flip: 3119, stem: 24428, fault:5567. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1555 -[UP] flip: 2723, stem: 25368, fault:5567. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1549 -[UP] flip: 1670, stem: 26208, fault:5548. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1547 -[UP] flip: 1835, stem: 27286, fault:5548. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1551 -[UP] flip: 707, stem: 26225, fault:5529. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1551 -[UP] flip: 1116, stem: 27025, fault:5529. flip_cnt: 3, stem_cnt: 1423, fault_cnt:1550 -[UP] flip: 2765, stem: 27526, fault:5529. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1568 -[UP] flip: 843, stem: 28008, fault:5187. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1515 -[UP] flip: 1963, stem: 18949, fault:4978. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1458 -[UP] flip: 4062, stem: 20429, fault:4940. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1452 -[UP] flip: 2509, stem: 16628, fault:4997. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1517 -[UP] flip: 747, stem: 17669, fault:4997. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1514 -[UP] flip: 3654, stem: 18729, fault:4997. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1510 -[UP] flip: 681, stem: 19949, fault:4997. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1489 -[UP] flip: 2367, stem: 21409, fault:4997. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1487 -[UP] flip: 2797, stem: 22929, fault:4997. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1483 -[UP] flip: 1428, stem: 22511, fault:5187. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1540 -[UP] flip: 2801, stem: 22310, fault:5187. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1545 -[UP] flip: 0, stem: 23370, fault:5187. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1545 -[UP] flip: 2358, stem: 24530, fault:5187. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1543 -[UP] flip: 3810, stem: 23370, fault:5168. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1535 -[UP] flip: 1728, stem: 16423, fault:5643. flip_cnt: 4, stem_cnt: 1425, fault_cnt:1643 -[UP] flip: 2188, stem: 15024, fault:5643. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1649 -[UP] flip: 1743, stem: 16004, fault:5681. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1651 -[UP] flip: 0, stem: 17264, fault:5719. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1674 -[UP] flip: 1226, stem: 18424, fault:5700. flip_cnt: 3, stem_cnt: 1424, fault_cnt:1673 -[UP] flip: 1168, stem: 19164, fault:5700. flip_cnt: 3, stem_cnt: 1424, fault_cnt:1669 -[UP] flip: 827, stem: 19845, fault:5700. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1668 -[UP] flip: 2972, stem: 20485, fault:5700. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1666 -[UP] flip: 2838, stem: 21087, fault:5529. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1622 -[UP] flip: 1634, stem: 19310, fault:5339. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1500 -[UP] flip: 1284, stem: 19950, fault:5168. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1397 -[UP] flip: 1905, stem: 20831, fault:5187. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1399 -[UP] flip: 0, stem: 21711, fault:5130. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1381 -[UP] flip: 0, stem: 22831, fault:5130. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1381 -[UP] flip: 2308, stem: 21349, fault:5206. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1385 -[UP] flip: 2449, stem: 17834, fault:5662. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1624 -[UP] flip: 1653, stem: 18371, fault:5814. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1674 -[UP] flip: 2320, stem: 18991, fault:5852. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1678 -[UP] flip: 1898, stem: 19790, fault:5947. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1698 -[UP] flip: 1102, stem: 19273, fault:5776. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1578 -[UP] flip: 2951, stem: 20313, fault:5757. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1575 -[UP] flip: 1888, stem: 20953, fault:5776. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1571 -[UP] flip: 1004, stem: 21972, fault:5757. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1573 -[UP] flip: 1766, stem: 23052, fault:5757. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1571 -[UP] flip: 3844, stem: 23131, fault:5719. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1558 -[UP] flip: 0, stem: 23690, fault:5719. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1561 -[UP] flip: 2983, stem: 24688, fault:5719. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1564 -[UP] flip: 3118, stem: 15709, fault:5890. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1569 -[UP] flip: 0, stem: 16749, fault:5890. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1569 -[UP] flip: 0, stem: 18010, fault:5890. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1569 -[UP] flip: 0, stem: 18711, fault:5890. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1568 -[UP] flip: 0, stem: 19730, fault:5890. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1568 -[UP] flip: 2993, stem: 21370, fault:5871. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1565 -[UP] flip: 764, stem: 22330, fault:5852. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1564 -[UP] flip: 2346, stem: 23390, fault:5852. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1562 -[UP] flip: 0, stem: 24450, fault:5852. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1562 -[UP] flip: 0, stem: 25611, fault:5852. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1562 -[UP] flip: 0, stem: 25473, fault:5852. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1558 -[UP] flip: 3144, stem: 21856, fault:5662. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1503 -[UP] flip: 0, stem: 22096, fault:5548. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1495 -[UP] flip: 3235, stem: 22356, fault:5548. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1493 -[UP] flip: 0, stem: 23476, fault:5548. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1493 -[UP] flip: 0, stem: 24896, fault:5548. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1493 -[UP] flip: 0, stem: 22959, fault:5472. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1506 -[UP] flip: 0, stem: 23959, fault:5472. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1506 -[UP] flip: 0, stem: 25239, fault:5472. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1501 -[UP] flip: 0, stem: 26559, fault:5472. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1501 -[UP] flip: 0, stem: 24216, fault:5472. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1500 -[UP] flip: 1514, stem: 22056, fault:4959. flip_cnt: 3, stem_cnt: 1412, fault_cnt:1398 -[UP] flip: 1595, stem: 22800, fault:4902. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1383 -[UP] flip: 1901, stem: 22699, fault:4902. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1374 -[UP] flip: 1955, stem: 23178, fault:4883. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1372 -[UP] flip: 2992, stem: 26998, fault:4864. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1358 -[UP] flip: 0, stem: 23163, fault:5415. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1623 -[UP] flip: 2625, stem: 23821, fault:5415. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1620 -[UP] flip: 0, stem: 25101, fault:5415. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1618 -[UP] flip: 3826, stem: 25801, fault:5396. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1614 -[UP] flip: 1306, stem: 25920, fault:5434. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1562 -[UP] flip: 3360, stem: 21959, fault:4902. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1424 -[UP] flip: 3268, stem: 23139, fault:4959. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1428 -[UP] flip: 3877, stem: 22878, fault:4940. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1440 -[UP] flip: 3009, stem: 24578, fault:4446. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1185 -[UP] flip: 2948, stem: 21776, fault:4446. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1181 -[UP] flip: 0, stem: 22916, fault:4446. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1179 -[UP] flip: 0, stem: 20697, fault:4427. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1153 -[UP] flip: 0, stem: 22138, fault:4427. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1153 -[UP] flip: 1536, stem: 21694, fault:4389. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1148 -[UP] flip: 3216, stem: 22532, fault:4389. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1149 -[UP] flip: 0, stem: 21151, fault:4408. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1152 -[UP] flip: 1859, stem: 22131, fault:4389. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1150 -[UP] flip: 0, stem: 23331, fault:4389. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1156 -[UP] flip: 790, stem: 18446, fault:4503. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1157 -[UP] flip: 3113, stem: 18527, fault:5054. flip_cnt: 7, stem_cnt: 1421, fault_cnt:1372 -[UP] flip: 3591, stem: 19567, fault:5016. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1357 -[UP] flip: 3376, stem: 20587, fault:4997. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1355 -[UP] flip: 3163, stem: 21069, fault:4674. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1281 -[UP] flip: 2925, stem: 22469, fault:4674. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1277 -[UP] flip: 1570, stem: 23311, fault:4674. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1273 -[UP] flip: 0, stem: 24391, fault:4674. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1273 -[UP] flip: 0, stem: 20085, fault:4769. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1304 -[UP] flip: 974, stem: 19507, fault:4997. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1456 -[UP] flip: 1789, stem: 19627, fault:4921. flip_cnt: 4, stem_cnt: 1421, fault_cnt:1433 -[UP] flip: 0, stem: 17367, fault:5320. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1571 -[UP] flip: 735, stem: 18048, fault:5301. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1568 -[UP] flip: 906, stem: 21047, fault:4845. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1431 -[UP] flip: 1720, stem: 21928, fault:5168. flip_cnt: 4, stem_cnt: 1420, fault_cnt:1520 -[UP] flip: 1847, stem: 22289, fault:5168. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1513 -[UP] flip: 0, stem: 23728, fault:5168. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1513 -[UP] flip: 2982, stem: 23148, fault:5168. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1519 -[UP] flip: 1967, stem: 24146, fault:5168. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1515 -[UP] flip: 3071, stem: 23566, fault:5168. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1500 -[UP] flip: 947, stem: 21424, fault:5168. flip_cnt: 3, stem_cnt: 1424, fault_cnt:1511 -[UP] flip: 0, stem: 22202, fault:5168. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1511 -[UP] flip: 685, stem: 22864, fault:5054. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1484 -[UP] flip: 3553, stem: 23545, fault:5016. flip_cnt: 7, stem_cnt: 1423, fault_cnt:1479 -[UP] flip: 0, stem: 23686, fault:5016. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1479 -[UP] flip: 948, stem: 24807, fault:5016. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1478 -[UP] flip: 852, stem: 28248, fault:5016. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1475 -[UP] flip: 2328, stem: 28928, fault:4978. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1472 -[UP] flip: 3114, stem: 22083, fault:5111. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1516 -[UP] flip: 4146, stem: 23343, fault:5111. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1512 -[UP] flip: 2969, stem: 23783, fault:5092. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1508 -[UP] flip: 2010, stem: 19319, fault:5035. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1510 -[UP] flip: 3615, stem: 19964, fault:5035. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1506 -[UP] flip: 2988, stem: 18682, fault:5282. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1577 -[UP] flip: 0, stem: 19423, fault:5282. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1571 -[UP] flip: 805, stem: 20282, fault:5282. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1572 -[UP] flip: 728, stem: 20683, fault:5282. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1577 -[UP] flip: 0, stem: 19622, fault:5605. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1715 -[UP] flip: 1123, stem: 19042, fault:5624. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1711 -[UP] flip: 0, stem: 17860, fault:5624. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1708 -[UP] flip: 0, stem: 18820, fault:5624. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1708 -[UP] flip: 1613, stem: 19761, fault:5624. flip_cnt: 4, stem_cnt: 1427, fault_cnt:1706 -[UP] flip: 0, stem: 20962, fault:5624. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1703 -[UP] flip: 3390, stem: 21422, fault:5586. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1697 -[UP] flip: 768, stem: 22463, fault:5586. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1696 -[UP] flip: 0, stem: 23543, fault:5586. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1696 -[UP] flip: 1516, stem: 25084, fault:5586. flip_cnt: 4, stem_cnt: 1424, fault_cnt:1694 -[UP] flip: 1358, stem: 25844, fault:5567. flip_cnt: 3, stem_cnt: 1424, fault_cnt:1693 -[UP] flip: 1305, stem: 23324, fault:5681. flip_cnt: 4, stem_cnt: 1424, fault_cnt:1721 -[UP] flip: 3646, stem: 24064, fault:5643. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1712 -[UP] flip: 1825, stem: 23845, fault:5643. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1714 -[UP] flip: 1022, stem: 24926, fault:5643. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1732 -[UP] flip: 0, stem: 24028, fault:5681. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1740 -[UP] flip: 1721, stem: 24626, fault:5719. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1743 -[UP] flip: 2450, stem: 24805, fault:5795. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1758 -[UP] flip: 0, stem: 25406, fault:5795. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1772 -[UP] flip: 3378, stem: 21711, fault:5586. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1708 -[UP] flip: 1489, stem: 22171, fault:5567. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1706 -[UP] flip: 806, stem: 23530, fault:5643. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1731 -[UP] flip: 2478, stem: 22826, fault:5453. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1691 -[UP] flip: 0, stem: 22746, fault:5472. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1726 -[UP] flip: 823, stem: 23807, fault:5453. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1723 -[UP] flip: 0, stem: 24746, fault:5453. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1723 -[UP] flip: 0, stem: 25187, fault:5453. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1722 -[UP] flip: 4714, stem: 26487, fault:5396. flip_cnt: 7, stem_cnt: 1421, fault_cnt:1718 -[UP] flip: 3935, stem: 27127, fault:5396. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1716 -[UP] flip: 813, stem: 27149, fault:5377. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1713 -[UP] flip: 1258, stem: 27949, fault:5358. flip_cnt: 3, stem_cnt: 1419, fault_cnt:1710 -[UP] flip: 3582, stem: 28749, fault:5358. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1706 -[UP] flip: 621, stem: 28868, fault:5358. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1705 -[UP] flip: 3177, stem: 29708, fault:5377. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1713 -[UP] flip: 0, stem: 25891, fault:5453. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1745 -[UP] flip: 0, stem: 26932, fault:5453. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1745 -[UP] flip: 4269, stem: 27072, fault:5434. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1741 -[UP] flip: 3301, stem: 26011, fault:5415. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1734 -[UP] flip: 2929, stem: 26011, fault:5415. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1730 -[UP] flip: 608, stem: 26950, fault:5339. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1707 -[UP] flip: 2050, stem: 16160, fault:5681. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1833 -[UP] flip: 3276, stem: 17440, fault:5681. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1841 -[UP] flip: 1618, stem: 18501, fault:5605. flip_cnt: 4, stem_cnt: 1427, fault_cnt:1825 -[UP] flip: 4170, stem: 16278, fault:5491. flip_cnt: 6, stem_cnt: 1430, fault_cnt:1769 -[UP] flip: 0, stem: 17278, fault:5491. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1769 -[UP] flip: 3352, stem: 16718, fault:5491. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1766 -[UP] flip: 0, stem: 17198, fault:5491. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1764 -[UP] flip: 616, stem: 17979, fault:5491. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1763 -[UP] flip: 3022, stem: 15018, fault:5529. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1762 -[UP] flip: 832, stem: 15497, fault:5510. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1761 -[UP] flip: 0, stem: 16136, fault:5510. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1750 -[UP] flip: 3175, stem: 16716, fault:5510. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1746 -[UP] flip: 0, stem: 17936, fault:5510. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1746 -[UP] flip: 2106, stem: 18636, fault:5510. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1744 -[UP] flip: 779, stem: 19556, fault:5510. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1741 -[UP] flip: 1249, stem: 20936, fault:5510. flip_cnt: 3, stem_cnt: 1432, fault_cnt:1738 -[UP] flip: 3118, stem: 21677, fault:5510. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1731 -[UP] flip: 0, stem: 22677, fault:5510. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1731 -[UP] flip: 960, stem: 23498, fault:5491. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1730 -[UP] flip: 2311, stem: 24558, fault:5453. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1728 -[UP] flip: 3241, stem: 21962, fault:5377. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1724 -[UP] flip: 2784, stem: 22421, fault:5529. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1752 -[UP] flip: 0, stem: 23782, fault:5529. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1752 -[UP] flip: 4206, stem: 23862, fault:5491. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1738 -[UP] flip: 0, stem: 24901, fault:5491. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1738 -[UP] flip: 2252, stem: 26061, fault:5472. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1736 -[UP] flip: 0, stem: 27061, fault:5453. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1730 -[UP] flip: 2380, stem: 27401, fault:5453. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1728 -[UP] flip: 3361, stem: 28601, fault:5453. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1725 -[UP] flip: 2581, stem: 29661, fault:5434. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1714 -[UP] flip: 1409, stem: 29981, fault:5434. flip_cnt: 3, stem_cnt: 1427, fault_cnt:1715 -[UP] flip: 1690, stem: 18476, fault:5529. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1730 -[UP] flip: 0, stem: 19856, fault:5529. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1729 -[UP] flip: 0, stem: 20496, fault:5529. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1729 -[UP] flip: 3248, stem: 20614, fault:5529. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1732 -[UP] flip: 969, stem: 21535, fault:5529. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1740 -[UP] flip: 0, stem: 22116, fault:5529. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1740 -[UP] flip: 3684, stem: 22976, fault:5491. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1736 -[UP] flip: 650, stem: 23075, fault:5491. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1731 -[UP] flip: 1636, stem: 23796, fault:5491. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1729 -[UP] flip: 1777, stem: 22773, fault:5605. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1814 -[UP] flip: 2063, stem: 23433, fault:5605. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1818 -[UP] flip: 0, stem: 23773, fault:5453. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1778 -[UP] flip: 788, stem: 24653, fault:5453. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1775 -[UP] flip: 2206, stem: 25033, fault:5453. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1773 -[UP] flip: 2146, stem: 24754, fault:5396. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1765 -[UP] flip: 0, stem: 25434, fault:5396. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1765 -[UP] flip: 979, stem: 26175, fault:5396. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1765 -[UP] flip: 1273, stem: 26295, fault:5396. flip_cnt: 3, stem_cnt: 1433, fault_cnt:1763 -[UP] flip: 2631, stem: 26635, fault:5510. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1787 -[UP] flip: 2939, stem: 19980, fault:5187. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1702 -[UP] flip: 0, stem: 20840, fault:5149. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1698 -[UP] flip: 3269, stem: 17858, fault:5149. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1700 -[UP] flip: 0, stem: 19138, fault:5149. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1694 -[UP] flip: 3072, stem: 19718, fault:5149. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1690 -[UP] flip: 1786, stem: 20499, fault:5168. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1686 -[UP] flip: 4546, stem: 21359, fault:5263. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1690 -[UP] flip: 2268, stem: 22279, fault:5263. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1688 -[UP] flip: 0, stem: 21301, fault:5263. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1688 -[UP] flip: 827, stem: 21801, fault:5263. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1689 -[UP] flip: 1956, stem: 21821, fault:5358. flip_cnt: 4, stem_cnt: 1427, fault_cnt:1705 -[UP] flip: 2687, stem: 22581, fault:5377. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1705 -[UP] flip: 3614, stem: 23201, fault:5282. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1688 -[UP] flip: 3220, stem: 23742, fault:5263. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1684 -[UP] flip: 0, stem: 24843, fault:5263. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1684 -[UP] flip: 3101, stem: 25223, fault:5244. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1681 -[UP] flip: 1051, stem: 24982, fault:5244. flip_cnt: 3, stem_cnt: 1426, fault_cnt:1680 -[UP] flip: 0, stem: 25742, fault:5244. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1680 -[UP] flip: 0, stem: 21624, fault:5168. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1650 -[UP] flip: 768, stem: 18142, fault:5339. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1669 -[UP] flip: 1794, stem: 18702, fault:5282. flip_cnt: 4, stem_cnt: 1426, fault_cnt:1667 -[UP] flip: 795, stem: 18043, fault:5282. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1670 -[UP] flip: 905, stem: 19522, fault:5244. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1667 -[UP] flip: 2359, stem: 20602, fault:5225. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1665 -[UP] flip: 2096, stem: 21782, fault:5225. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1663 -[UP] flip: 0, stem: 22642, fault:5016. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1618 -[UP] flip: 2060, stem: 22878, fault:5092. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1650 -[UP] flip: 3763, stem: 25498, fault:5168. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1657 -[UP] flip: 0, stem: 26438, fault:5168. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1657 -[UP] flip: 0, stem: 26738, fault:5168. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1657 -[UP] flip: 995, stem: 27219, fault:5111. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1654 -[UP] flip: 1676, stem: 25402, fault:5035. flip_cnt: 4, stem_cnt: 1426, fault_cnt:1653 -[UP] flip: 0, stem: 25122, fault:5035. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1652 -[UP] flip: 0, stem: 25462, fault:5035. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1668 -[UP] flip: 1849, stem: 23303, fault:4978. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1657 -[UP] flip: 1048, stem: 23441, fault:4978. flip_cnt: 3, stem_cnt: 1427, fault_cnt:1656 -[UP] flip: 1133, stem: 24361, fault:4978. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1653 -[UP] flip: 0, stem: 25661, fault:4978. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1645 -[UP] flip: 3130, stem: 26241, fault:4978. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1641 -[UP] flip: 3116, stem: 26761, fault:4940. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1631 -[UP] flip: 4740, stem: 19841, fault:4959. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1662 -[UP] flip: 737, stem: 21102, fault:4959. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1661 -[UP] flip: 1011, stem: 20901, fault:4959. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1658 -[UP] flip: 3205, stem: 22081, fault:4940. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1654 -[UP] flip: 3597, stem: 21782, fault:4788. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1609 -[UP] flip: 0, stem: 22082, fault:4788. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1611 -[UP] flip: 0, stem: 17763, fault:4978. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1625 -[UP] flip: 4119, stem: 15842, fault:4978. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1625 -[UP] flip: 0, stem: 16702, fault:5396. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1711 -[UP] flip: 0, stem: 17603, fault:5396. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1711 -[UP] flip: 4546, stem: 18424, fault:5377. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1707 -[UP] flip: 2247, stem: 14404, fault:5244. flip_cnt: 4, stem_cnt: 1424, fault_cnt:1662 -[UP] flip: 1024, stem: 15405, fault:5263. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1671 -[UP] flip: 0, stem: 16585, fault:5263. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1671 -[UP] flip: 3779, stem: 17446, fault:5263. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1667 -[UP] flip: 1424, stem: 17343, fault:5396. flip_cnt: 3, stem_cnt: 1425, fault_cnt:1689 -[UP] flip: 972, stem: 17362, fault:5016. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1600 -[UP] flip: 0, stem: 18602, fault:5016. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1600 -[UP] flip: 2594, stem: 19562, fault:5016. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1598 -[UP] flip: 4029, stem: 20302, fault:4978. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1594 -[UP] flip: 1702, stem: 21122, fault:4978. flip_cnt: 4, stem_cnt: 1426, fault_cnt:1592 -[UP] flip: 3214, stem: 22181, fault:4959. flip_cnt: 4, stem_cnt: 1427, fault_cnt:1602 -[UP] flip: 0, stem: 23082, fault:4997. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1617 -[UP] flip: 0, stem: 25002, fault:4997. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1617 -[UP] flip: 3692, stem: 24480, fault:4997. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1612 -[UP] flip: 2041, stem: 24620, fault:4997. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1610 -[UP] flip: 1815, stem: 25161, fault:5016. flip_cnt: 4, stem_cnt: 1427, fault_cnt:1602 -[UP] flip: 0, stem: 26700, fault:5035. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1606 -[UP] flip: 0, stem: 27000, fault:5035. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1604 -[UP] flip: 0, stem: 25558, fault:5339. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1694 -[UP] flip: 2284, stem: 22459, fault:5339. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1696 -[UP] flip: 2611, stem: 23077, fault:5339. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1698 -[UP] flip: 3948, stem: 16898, fault:5871. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1778 -[UP] flip: 2193, stem: 17198, fault:5833. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1768 -[UP] flip: 2082, stem: 18259, fault:5833. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1764 -[UP] flip: 2083, stem: 18256, fault:5947. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1775 -[UP] flip: 3116, stem: 18696, fault:5890. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1773 -[UP] flip: 4969, stem: 18996, fault:5852. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1767 -[UP] flip: 3907, stem: 19816, fault:5852. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1757 -[UP] flip: 3062, stem: 19255, fault:5947. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1768 -[UP] flip: 3768, stem: 20155, fault:5928. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1757 -[UP] flip: 2434, stem: 20715, fault:5928. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1750 -[UP] flip: 3700, stem: 21135, fault:5928. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1748 -[UP] flip: 0, stem: 21815, fault:5928. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1748 -[UP] flip: 1073, stem: 22755, fault:5928. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1745 -[UP] flip: 2737, stem: 20373, fault:5890. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1756 -[UP] flip: 0, stem: 20494, fault:5890. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1756 -[UP] flip: 0, stem: 19951, fault:6061. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1779 -[UP] flip: 1439, stem: 20211, fault:6061. flip_cnt: 3, stem_cnt: 1437, fault_cnt:1778 -[UP] flip: 0, stem: 20951, fault:6061. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1778 -[UP] flip: 4842, stem: 21511, fault:6061. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1774 -[UP] flip: 0, stem: 21191, fault:6042. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1771 -[UP] flip: 4047, stem: 21531, fault:6023. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1769 -[UP] flip: 643, stem: 22352, fault:6023. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1766 -[UP] flip: 965, stem: 22913, fault:6004. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1763 -[UP] flip: 0, stem: 23612, fault:6004. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1763 -[UP] flip: 4329, stem: 24132, fault:5985. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1761 -[UP] flip: 3736, stem: 23572, fault:5966. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1758 -[UP] flip: 0, stem: 24473, fault:5909. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1752 -[UP] flip: 0, stem: 13858, fault:6042. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1750 -[UP] flip: 4601, stem: 14758, fault:6042. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1746 -[UP] flip: 3246, stem: 15756, fault:6004. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1748 -[UP] flip: 860, stem: 16397, fault:5966. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1742 -[UP] flip: 3808, stem: 17077, fault:5947. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1739 -[UP] flip: 874, stem: 17856, fault:5947. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1737 -[UP] flip: 3939, stem: 18016, fault:5928. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1738 -[UP] flip: 981, stem: 18714, fault:6004. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1799 -[UP] flip: 0, stem: 19895, fault:6004. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1799 -[UP] flip: 1853, stem: 19956, fault:6004. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1791 -[UP] flip: 2277, stem: 21016, fault:6004. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1797 -[UP] flip: 3378, stem: 20495, fault:5985. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1794 -[UP] flip: 3759, stem: 21415, fault:5985. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1791 -[UP] flip: 3437, stem: 21975, fault:5928. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1785 -[UP] flip: 0, stem: 19238, fault:5776. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1767 -[UP] flip: 0, stem: 18557, fault:5814. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1778 -[UP] flip: 2139, stem: 19097, fault:5814. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1776 -[UP] flip: 2933, stem: 20117, fault:5833. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1780 -[UP] flip: 1073, stem: 20617, fault:5814. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1771 -[UP] flip: 4127, stem: 20219, fault:5681. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1760 -[UP] flip: 0, stem: 18627, fault:5510. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1722 -[UP] flip: 0, stem: 19868, fault:5510. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1722 -[UP] flip: 0, stem: 20869, fault:5510. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1722 -[UP] flip: 0, stem: 21868, fault:5510. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1722 -[UP] flip: 0, stem: 22568, fault:5510. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1722 -[UP] flip: 901, stem: 23447, fault:5472. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1719 -[UP] flip: 3105, stem: 22786, fault:5472. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1712 -[UP] flip: 0, stem: 23704, fault:5529. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1729 -[UP] flip: 3850, stem: 24664, fault:5529. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1725 -[UP] flip: 2229, stem: 20547, fault:5510. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1676 -[UP] flip: 4059, stem: 21827, fault:5510. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1674 -[UP] flip: 933, stem: 21567, fault:5510. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1671 -[UP] flip: 3195, stem: 21767, fault:5510. flip_cnt: 7, stem_cnt: 1421, fault_cnt:1665 -[UP] flip: 2011, stem: 20426, fault:5529. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1671 -[UP] flip: 4170, stem: 20047, fault:5548. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1667 -[UP] flip: 1430, stem: 21347, fault:5567. flip_cnt: 3, stem_cnt: 1421, fault_cnt:1674 -[UP] flip: 0, stem: 22747, fault:5567. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1674 -[UP] flip: 876, stem: 23607, fault:5567. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1675 -[UP] flip: 3869, stem: 24847, fault:5624. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1700 -[UP] flip: 4001, stem: 21406, fault:5415. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1677 -[UP] flip: 2188, stem: 21885, fault:5472. flip_cnt: 4, stem_cnt: 1423, fault_cnt:1676 -[UP] flip: 0, stem: 22626, fault:5491. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1687 -[UP] flip: 0, stem: 22606, fault:5491. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1687 -[UP] flip: 0, stem: 19923, fault:5339. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1682 -[UP] flip: 2061, stem: 20983, fault:5339. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1680 -[UP] flip: 3050, stem: 21243, fault:5301. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1680 -[UP] flip: 1093, stem: 21764, fault:5301. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1667 -[UP] flip: 3924, stem: 22424, fault:5263. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1665 -[UP] flip: 2931, stem: 23044, fault:5263. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1663 -[UP] flip: 3209, stem: 22747, fault:5282. flip_cnt: 7, stem_cnt: 1421, fault_cnt:1652 -[UP] flip: 3745, stem: 22627, fault:5168. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1637 -[UP] flip: 2297, stem: 22645, fault:5187. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1637 -[UP] flip: 3848, stem: 22785, fault:5149. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1633 -[UP] flip: 0, stem: 23865, fault:4845. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1533 -[UP] flip: 1965, stem: 24062, fault:4864. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1535 -[UP] flip: 3784, stem: 25085, fault:5035. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1597 -[UP] flip: 1910, stem: 21882, fault:5035. flip_cnt: 4, stem_cnt: 1426, fault_cnt:1597 -[UP] flip: 4400, stem: 21644, fault:5111. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1600 -[UP] flip: 1870, stem: 22444, fault:5130. flip_cnt: 4, stem_cnt: 1424, fault_cnt:1598 -[UP] flip: 2584, stem: 17117, fault:5358. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1684 -[UP] flip: 1099, stem: 18418, fault:5358. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1679 -[UP] flip: 0, stem: 19238, fault:5358. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1679 -[UP] flip: 0, stem: 16043, fault:5339. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1675 -[UP] flip: 2152, stem: 16681, fault:5339. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1678 -[UP] flip: 1878, stem: 15444, fault:5282. flip_cnt: 4, stem_cnt: 1424, fault_cnt:1676 -[UP] flip: 0, stem: 15884, fault:5282. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1673 -[UP] flip: 861, stem: 17045, fault:5282. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1670 -[UP] flip: 3716, stem: 15423, fault:5320. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1673 -[UP] flip: 2081, stem: 15241, fault:5358. flip_cnt: 4, stem_cnt: 1427, fault_cnt:1693 -[UP] flip: 3435, stem: 16002, fault:5358. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1702 -[UP] flip: 4010, stem: 15562, fault:5358. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1693 -[UP] flip: 0, stem: 16221, fault:5358. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1696 -[UP] flip: 0, stem: 17161, fault:5358. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1694 -[UP] flip: 3396, stem: 18040, fault:5339. flip_cnt: 4, stem_cnt: 1428, fault_cnt:1696 -[UP] flip: 0, stem: 18361, fault:5339. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1697 -[UP] flip: 0, stem: 15641, fault:5320. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1689 -[UP] flip: 1070, stem: 15778, fault:5320. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1690 -[UP] flip: 3711, stem: 16778, fault:5320. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1686 -[UP] flip: 0, stem: 17799, fault:5320. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1686 -[UP] flip: 4707, stem: 18799, fault:5282. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1682 -[UP] flip: 2750, stem: 19979, fault:5263. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1679 -[UP] flip: 2083, stem: 20580, fault:5244. flip_cnt: 4, stem_cnt: 1428, fault_cnt:1675 -[UP] flip: 869, stem: 21421, fault:5244. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1669 -[UP] flip: 0, stem: 21901, fault:5244. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1669 -[UP] flip: 0, stem: 22681, fault:5244. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1669 -[UP] flip: 0, stem: 23901, fault:5244. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1669 -[UP] flip: 3959, stem: 24361, fault:5244. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1667 -[UP] flip: 4093, stem: 21817, fault:5301. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1645 -[UP] flip: 2601, stem: 22697, fault:5301. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1643 -[UP] flip: 0, stem: 21677, fault:5377. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1660 -[UP] flip: 0, stem: 22078, fault:5377. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1663 -[UP] flip: 0, stem: 22938, fault:5377. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1663 -[UP] flip: 3542, stem: 23158, fault:5377. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1659 -[UP] flip: 2137, stem: 20839, fault:5301. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1641 -[UP] flip: 2142, stem: 21019, fault:5035. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1592 -[UP] flip: 1058, stem: 21401, fault:5035. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1591 -[UP] flip: 5530, stem: 21640, fault:5396. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1694 -[UP] flip: 1025, stem: 23538, fault:5738. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1780 -[UP] flip: 0, stem: 24178, fault:5738. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1780 -[UP] flip: 2620, stem: 22637, fault:5681. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1773 -[UP] flip: 3968, stem: 15534, fault:5377. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1692 -[UP] flip: 1004, stem: 15873, fault:5377. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1689 -[UP] flip: 0, stem: 16653, fault:5377. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1689 -[UP] flip: 4931, stem: 17613, fault:5377. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1685 -[UP] flip: 2288, stem: 15631, fault:5301. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1690 -[UP] flip: 4121, stem: 16451, fault:5263. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1684 -[UP] flip: 4845, stem: 17151, fault:5263. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1680 -[UP] flip: 0, stem: 18052, fault:5263. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1680 -[UP] flip: 890, stem: 18352, fault:5263. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1679 -[UP] flip: 3727, stem: 15890, fault:5225. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1662 -[UP] flip: 2145, stem: 16290, fault:5244. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1660 -[UP] flip: 880, stem: 16687, fault:5263. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1667 -[UP] flip: 1564, stem: 17328, fault:5605. flip_cnt: 3, stem_cnt: 1440, fault_cnt:1749 -[UP] flip: 4016, stem: 15288, fault:5586. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1746 -[UP] flip: 700, stem: 15667, fault:5605. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1745 -[UP] flip: 3936, stem: 16367, fault:5643. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1750 -[UP] flip: 4299, stem: 16867, fault:5643. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1748 -[UP] flip: 4048, stem: 17727, fault:5643. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1746 -[UP] flip: 0, stem: 18207, fault:5643. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1746 -[UP] flip: 0, stem: 18186, fault:5643. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1746 -[UP] flip: 1863, stem: 18767, fault:5643. flip_cnt: 4, stem_cnt: 1441, fault_cnt:1744 -[UP] flip: 3365, stem: 20347, fault:5605. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1740 -[UP] flip: 3728, stem: 21247, fault:5605. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1735 -[UP] flip: 2702, stem: 21527, fault:5586. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1731 -[UP] flip: 4474, stem: 22247, fault:5586. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1729 -[UP] flip: 2214, stem: 21047, fault:5320. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1673 -[UP] flip: 1618, stem: 21007, fault:5320. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1666 -[UP] flip: 4283, stem: 20667, fault:5320. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1663 -[UP] flip: 2719, stem: 18965, fault:5282. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1660 -[UP] flip: 2194, stem: 17865, fault:5263. flip_cnt: 4, stem_cnt: 1443, fault_cnt:1643 -[UP] flip: 3857, stem: 18225, fault:5263. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1647 -[UP] flip: 1447, stem: 19366, fault:5263. flip_cnt: 3, stem_cnt: 1442, fault_cnt:1645 -[UP] flip: 4992, stem: 19446, fault:5263. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1638 -[UP] flip: 3436, stem: 20326, fault:5225. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1634 -[UP] flip: 4149, stem: 20166, fault:5149. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1626 -[UP] flip: 1028, stem: 18929, fault:5130. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1619 -[UP] flip: 3817, stem: 19509, fault:5130. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1613 -[UP] flip: 2089, stem: 20230, fault:5130. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1611 -[UP] flip: 3470, stem: 20909, fault:5111. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1614 -[UP] flip: 0, stem: 21288, fault:4826. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1555 -[UP] flip: 4115, stem: 21988, fault:4826. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1551 -[UP] flip: 3310, stem: 21627, fault:4807. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1512 -[UP] flip: 2562, stem: 20089, fault:4750. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1484 -[UP] flip: 2353, stem: 18231, fault:5073. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1555 -[UP] flip: 0, stem: 18950, fault:5130. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1569 -[UP] flip: 909, stem: 19471, fault:5111. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1568 -[UP] flip: 5006, stem: 19951, fault:5073. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1564 -[UP] flip: 1465, stem: 17911, fault:5111. flip_cnt: 3, stem_cnt: 1437, fault_cnt:1578 -[UP] flip: 4118, stem: 18991, fault:5130. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1580 -[UP] flip: 982, stem: 19448, fault:5168. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1587 -[UP] flip: 4143, stem: 20288, fault:5263. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1613 -[UP] flip: 2446, stem: 21628, fault:5263. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1611 -[UP] flip: 909, stem: 20690, fault:5358. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1621 -[UP] flip: 3716, stem: 21188, fault:5396. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1624 -[UP] flip: 778, stem: 22049, fault:5472. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1625 -[UP] flip: 4425, stem: 20111, fault:5795. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1742 -[UP] flip: 1164, stem: 20972, fault:5776. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1741 -[UP] flip: 4393, stem: 21169, fault:5776. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1744 -[UP] flip: 1067, stem: 20086, fault:6080. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1827 -[UP] flip: 4062, stem: 20926, fault:6042. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1823 -[UP] flip: 0, stem: 21326, fault:6042. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1823 -[UP] flip: 2864, stem: 19267, fault:6004. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1806 -[UP] flip: 0, stem: 20527, fault:6004. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1806 -[UP] flip: 2520, stem: 21245, fault:6023. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1810 -[UP] flip: 4233, stem: 22145, fault:6004. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1810 -[UP] flip: 2024, stem: 19982, fault:6080. flip_cnt: 4, stem_cnt: 1446, fault_cnt:1817 -[UP] flip: 0, stem: 20763, fault:6118. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1825 -[UP] flip: 4194, stem: 19203, fault:6080. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1821 -[UP] flip: 1233, stem: 17644, fault:6080. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1807 -[UP] flip: 0, stem: 18224, fault:6080. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1807 -[UP] flip: 3082, stem: 17844, fault:6080. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1803 -[UP] flip: 4227, stem: 16444, fault:6042. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1797 -[UP] flip: 4212, stem: 17064, fault:6042. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1793 -[UP] flip: 1721, stem: 19065, fault:6061. flip_cnt: 4, stem_cnt: 1443, fault_cnt:1791 -[UP] flip: 0, stem: 19765, fault:6061. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1791 -[UP] flip: 4081, stem: 20265, fault:6061. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1788 -[UP] flip: 3890, stem: 20624, fault:6042. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1785 -[UP] flip: 5657, stem: 20644, fault:6042. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1787 -[UP] flip: 3842, stem: 21425, fault:6042. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1785 -[UP] flip: 818, stem: 21366, fault:5985. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1782 -[UP] flip: 4064, stem: 21506, fault:5947. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1778 -[UP] flip: 0, stem: 22225, fault:5947. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1778 -[UP] flip: 1976, stem: 22886, fault:5947. flip_cnt: 4, stem_cnt: 1442, fault_cnt:1776 -[UP] flip: 2500, stem: 23486, fault:5852. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1732 -[UP] flip: 0, stem: 23464, fault:5833. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1722 -[UP] flip: 4309, stem: 23164, fault:5833. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1719 -[UP] flip: 0, stem: 23464, fault:5833. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1719 -[UP] flip: 0, stem: 23564, fault:5833. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1719 -[UP] flip: 1726, stem: 23664, fault:5852. flip_cnt: 4, stem_cnt: 1444, fault_cnt:1717 -[UP] flip: 0, stem: 24764, fault:6042. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1798 -[UP] flip: 3417, stem: 25064, fault:6004. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1794 -[UP] flip: 4491, stem: 24704, fault:5814. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1728 -[UP] flip: 1093, stem: 24965, fault:5814. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1727 -[UP] flip: 3738, stem: 25504, fault:5833. flip_cnt: 4, stem_cnt: 1444, fault_cnt:1730 -[UP] flip: 1465, stem: 25964, fault:6023. flip_cnt: 3, stem_cnt: 1444, fault_cnt:1804 -[UP] flip: 4657, stem: 24785, fault:6004. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1823 -[UP] flip: 1019, stem: 24886, fault:5947. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1820 -[UP] flip: 2746, stem: 25106, fault:5928. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1818 -[UP] flip: 2465, stem: 24547, fault:5244. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1615 -[UP] flip: 4593, stem: 24327, fault:5206. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1606 -[UP] flip: 4607, stem: 24648, fault:5187. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1604 -[UP] flip: 5716, stem: 23508, fault:5187. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1600 -[UP] flip: 0, stem: 22788, fault:5187. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1589 -[UP] flip: 5190, stem: 22070, fault:5206. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1586 -[UP] flip: 3618, stem: 22088, fault:5225. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1589 -[UP] flip: 0, stem: 20430, fault:5320. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1596 -[UP] flip: 1069, stem: 20750, fault:5301. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1593 -[UP] flip: 0, stem: 21550, fault:5301. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1593 -[UP] flip: 4427, stem: 22370, fault:5301. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1589 -[UP] flip: 0, stem: 24530, fault:5301. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1587 -[UP] flip: 0, stem: 24630, fault:5301. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1587 -[UP] flip: 0, stem: 26010, fault:5301. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1587 -[UP] flip: 2368, stem: 25370, fault:5282. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1579 -[UP] flip: 0, stem: 23092, fault:5491. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1587 -[UP] flip: 0, stem: 24152, fault:5491. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1587 -[UP] flip: 4095, stem: 23252, fault:5491. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1594 -[UP] flip: 0, stem: 23793, fault:5491. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1594 -[UP] flip: 0, stem: 24434, fault:5491. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1594 -[UP] flip: 0, stem: 25214, fault:5491. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1594 -[UP] flip: 3180, stem: 26154, fault:5491. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1592 -[UP] flip: 5674, stem: 26854, fault:5434. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1588 -[UP] flip: 0, stem: 26753, fault:5434. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1588 -[UP] flip: 0, stem: 22291, fault:5092. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1465 -[UP] flip: 1137, stem: 22652, fault:5472. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1582 -[UP] flip: 4626, stem: 24112, fault:5472. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1578 -[UP] flip: 2297, stem: 23192, fault:5472. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1580 -[UP] flip: 930, stem: 23973, fault:5415. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1579 -[UP] flip: 3715, stem: 24073, fault:5377. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1575 -[UP] flip: 0, stem: 24893, fault:5377. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1575 -[UP] flip: 3823, stem: 25933, fault:5339. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1571 -[UP] flip: 971, stem: 26834, fault:5282. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1568 -[UP] flip: 2665, stem: 27032, fault:5282. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1571 -[UP] flip: 1042, stem: 27492, fault:5795. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1752 -[UP] flip: 5590, stem: 26294, fault:5681. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1742 -[UP] flip: 1577, stem: 26594, fault:5681. flip_cnt: 3, stem_cnt: 1434, fault_cnt:1741 -[UP] flip: 3063, stem: 26514, fault:5681. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1740 -[UP] flip: 4757, stem: 27934, fault:5681. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1738 -[UP] flip: 2846, stem: 28254, fault:5681. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1736 -[UP] flip: 0, stem: 28914, fault:5681. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1735 -[UP] flip: 1207, stem: 29615, fault:5681. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1732 -[UP] flip: 0, stem: 30334, fault:5681. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1732 -[UP] flip: 3516, stem: 27994, fault:5643. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1724 -[UP] flip: 3420, stem: 28434, fault:5510. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1674 -[UP] flip: 4454, stem: 28074, fault:5491. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1668 -[UP] flip: 0, stem: 28314, fault:5491. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1668 -[UP] flip: 4402, stem: 27794, fault:5491. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1664 -[UP] flip: 0, stem: 27735, fault:4845. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1412 -[UP] flip: 1903, stem: 27995, fault:4845. flip_cnt: 4, stem_cnt: 1433, fault_cnt:1410 -[UP] flip: 2816, stem: 28517, fault:4807. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1402 -[UP] flip: 0, stem: 28776, fault:4807. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1399 -[UP] flip: 0, stem: 23837, fault:4902. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1436 -[UP] flip: 0, stem: 23996, fault:4902. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1435 -[UP] flip: 0, stem: 24136, fault:4902. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1435 -[UP] flip: 2888, stem: 24314, fault:4921. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1434 -[UP] flip: 4670, stem: 24974, fault:4940. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1453 -[UP] flip: 4534, stem: 25694, fault:4940. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1451 -[UP] flip: 1370, stem: 25354, fault:4921. flip_cnt: 3, stem_cnt: 1434, fault_cnt:1447 -[UP] flip: 0, stem: 25694, fault:4883. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1443 -[UP] flip: 0, stem: 26553, fault:4883. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1443 -[UP] flip: 3124, stem: 26053, fault:4864. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1441 -[UP] flip: 0, stem: 25993, fault:4864. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1441 -[UP] flip: 962, stem: 26573, fault:4845. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1440 -[UP] flip: 0, stem: 27073, fault:4826. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1438 -[UP] flip: 941, stem: 26093, fault:4769. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1442 -[UP] flip: 1394, stem: 27034, fault:4750. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1448 -[UP] flip: 1124, stem: 24452, fault:5073. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1637 -[UP] flip: 0, stem: 24672, fault:5073. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1637 -[UP] flip: 0, stem: 24372, fault:5054. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1644 -[UP] flip: 4367, stem: 24511, fault:5054. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1636 -[UP] flip: 0, stem: 25571, fault:5054. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1634 -[UP] flip: 2914, stem: 24088, fault:5054. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1641 -[UP] flip: 1010, stem: 24126, fault:5054. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1657 -[UP] flip: 2695, stem: 24066, fault:5529. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1823 -[UP] flip: 3249, stem: 23527, fault:5453. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1810 -[UP] flip: 0, stem: 23287, fault:4940. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1621 -[UP] flip: 1053, stem: 24306, fault:4940. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1624 -[UP] flip: 1049, stem: 24727, fault:4959. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1630 -[UP] flip: 0, stem: 22709, fault:5567. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1802 -[UP] flip: 2941, stem: 23209, fault:5548. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1800 -[UP] flip: 2448, stem: 22330, fault:5605. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1809 -[UP] flip: 4274, stem: 23210, fault:5567. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1813 -[UP] flip: 2416, stem: 23729, fault:5529. flip_cnt: 4, stem_cnt: 1439, fault_cnt:1813 -[UP] flip: 2014, stem: 23008, fault:5472. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1811 -[UP] flip: 0, stem: 23427, fault:5529. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1826 -[UP] flip: 0, stem: 23426, fault:5510. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1822 -[UP] flip: 0, stem: 24226, fault:5510. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1822 -[UP] flip: 0, stem: 25007, fault:5453. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1819 -[UP] flip: 4621, stem: 25647, fault:5415. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1815 -[UP] flip: 3264, stem: 26187, fault:5396. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1813 -[UP] flip: 4163, stem: 26887, fault:5396. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1809 -[UP] flip: 1386, stem: 26048, fault:5377. flip_cnt: 3, stem_cnt: 1440, fault_cnt:1802 -[UP] flip: 949, stem: 26269, fault:5358. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1799 -[UP] flip: 0, stem: 20556, fault:5263. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1787 -[UP] flip: 5532, stem: 21856, fault:5263. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1783 -[UP] flip: 0, stem: 18470, fault:5111. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1690 -[UP] flip: 5259, stem: 18250, fault:5111. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1688 -[UP] flip: 4705, stem: 18650, fault:5111. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1680 -[UP] flip: 910, stem: 19431, fault:5111. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1679 -[UP] flip: 1765, stem: 19612, fault:5111. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1677 -[UP] flip: 0, stem: 20492, fault:5111. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1676 -[UP] flip: 1901, stem: 20551, fault:5111. flip_cnt: 3, stem_cnt: 1437, fault_cnt:1686 -[UP] flip: 0, stem: 20331, fault:4389. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1425 -[UP] flip: 0, stem: 19271, fault:4389. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1421 -[UP] flip: 0, stem: 19971, fault:4389. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1421 -[UP] flip: 0, stem: 18268, fault:4541. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1455 -[UP] flip: 801, stem: 18827, fault:4541. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1456 -[UP] flip: 2906, stem: 17587, fault:4579. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1470 -[UP] flip: 3315, stem: 17787, fault:4579. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1467 -[UP] flip: 0, stem: 16643, fault:4598. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1485 -[UP] flip: 0, stem: 17124, fault:4598. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1485 -[UP] flip: 2591, stem: 17625, fault:4598. flip_cnt: 4, stem_cnt: 1443, fault_cnt:1483 -[UP] flip: 1084, stem: 18726, fault:4598. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1474 -[UP] flip: 3926, stem: 19426, fault:4598. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1470 -[UP] flip: 0, stem: 19927, fault:4598. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1464 -[UP] flip: 0, stem: 20168, fault:4598. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1460 -[UP] flip: 4674, stem: 20468, fault:4560. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1456 -[UP] flip: 0, stem: 20426, fault:4560. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1454 -[UP] flip: 2956, stem: 20786, fault:4560. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1452 -[UP] flip: 2442, stem: 20886, fault:4560. flip_cnt: 4, stem_cnt: 1442, fault_cnt:1449 -[UP] flip: 1821, stem: 21347, fault:4636. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1454 -[UP] flip: 0, stem: 18507, fault:4617. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1452 -[UP] flip: 399, stem: 18505, fault:4617. flip_cnt: 1, stem_cnt: 1443, fault_cnt:1449 -[UP] flip: 4763, stem: 19006, fault:4617. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1447 -[UP] flip: 1023, stem: 19068, fault:4617. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1444 -[UP] flip: 0, stem: 18888, fault:4617. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1440 -[UP] flip: 1043, stem: 18069, fault:4617. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1439 -[UP] flip: 0, stem: 19091, fault:4712. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1459 -[UP] flip: 0, stem: 19471, fault:4712. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1459 -[UP] flip: 1392, stem: 19171, fault:4712. flip_cnt: 3, stem_cnt: 1437, fault_cnt:1460 -[UP] flip: 6366, stem: 19991, fault:4921. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1511 -[UP] flip: 0, stem: 20390, fault:4921. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1511 -[UP] flip: 4803, stem: 20690, fault:4921. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1503 -[UP] flip: 2913, stem: 20808, fault:4940. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1505 -[UP] flip: 4355, stem: 21428, fault:4997. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1507 -[UP] flip: 5216, stem: 20527, fault:5225. flip_cnt: 6, stem_cnt: 1441, fault_cnt:1577 -[UP] flip: 4701, stem: 19386, fault:5263. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1574 -[UP] flip: 1389, stem: 19185, fault:5928. flip_cnt: 3, stem_cnt: 1443, fault_cnt:1806 -[UP] flip: 0, stem: 19964, fault:5928. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1806 -[UP] flip: 2699, stem: 19382, fault:5928. flip_cnt: 4, stem_cnt: 1446, fault_cnt:1805 -[UP] flip: 1245, stem: 20143, fault:5928. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1821 -[UP] flip: 6408, stem: 20064, fault:5928. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1817 -[UP] flip: 3547, stem: 13383, fault:5776. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1799 -[UP] flip: 4027, stem: 13583, fault:5757. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1805 -[UP] flip: 4215, stem: 14043, fault:5757. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1799 -[UP] flip: 0, stem: 14564, fault:5757. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1793 -[UP] flip: 0, stem: 15064, fault:5757. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1793 -[UP] flip: 1208, stem: 14524, fault:5776. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1794 -[UP] flip: 3430, stem: 14884, fault:5776. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1791 -[UP] flip: 3134, stem: 15024, fault:5738. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1786 -[UP] flip: 4425, stem: 14003, fault:5833. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1799 -[UP] flip: 1266, stem: 11780, fault:5928. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1854 -[UP] flip: 0, stem: 12560, fault:5928. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1854 -[UP] flip: 1238, stem: 12201, fault:5928. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1851 -[UP] flip: 2126, stem: 12440, fault:5947. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1854 -[UP] flip: 0, stem: 12541, fault:5985. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1870 -[UP] flip: 0, stem: 13381, fault:5985. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1870 -[UP] flip: 4763, stem: 13741, fault:5985. flip_cnt: 7, stem_cnt: 1447, fault_cnt:1866 -[UP] flip: 3550, stem: 13542, fault:5947. flip_cnt: 7, stem_cnt: 1446, fault_cnt:1862 -[UP] flip: 3863, stem: 13059, fault:5947. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1856 -[UP] flip: 1195, stem: 12360, fault:5928. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1855 -[UP] flip: 3277, stem: 12320, fault:6023. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1879 -[UP] flip: 0, stem: 12800, fault:6004. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1856 -[UP] flip: 1604, stem: 13281, fault:5985. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1853 -[UP] flip: 967, stem: 13561, fault:5985. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1850 -[UP] flip: 0, stem: 14121, fault:5985. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1850 -[UP] flip: 2088, stem: 14562, fault:5985. flip_cnt: 4, stem_cnt: 1446, fault_cnt:1848 -[UP] flip: 1849, stem: 16202, fault:5985. flip_cnt: 3, stem_cnt: 1446, fault_cnt:1844 -[UP] flip: 1226, stem: 15600, fault:6004. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1845 -[UP] flip: 1175, stem: 15099, fault:6289. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1949 -[UP] flip: 1441, stem: 15560, fault:6308. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1954 -[UP] flip: 3821, stem: 14998, fault:6308. flip_cnt: 4, stem_cnt: 1450, fault_cnt:1957 -[UP] flip: 4448, stem: 15558, fault:6308. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1959 -[UP] flip: 4434, stem: 15398, fault:6308. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1957 -[UP] flip: 0, stem: 16578, fault:6308. flip_cnt: 0, stem_cnt: 1450, fault_cnt:1957 -[UP] flip: 4612, stem: 15718, fault:6308. flip_cnt: 7, stem_cnt: 1450, fault_cnt:1953 -[UP] flip: 3136, stem: 15876, fault:6270. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1950 -[UP] flip: 4270, stem: 15716, fault:6289. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1971 -[UP] flip: 3072, stem: 16256, fault:6251. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1977 -[UP] flip: 5363, stem: 14494, fault:6099. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1965 -[UP] flip: 0, stem: 14274, fault:6099. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1965 -[UP] flip: 0, stem: 14814, fault:6099. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1966 -[UP] flip: 4473, stem: 15014, fault:6061. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1962 -[UP] flip: 0, stem: 15354, fault:6042. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1943 -[UP] flip: 0, stem: 15454, fault:6042. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1943 -[UP] flip: 1060, stem: 14894, fault:6042. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1940 -[UP] flip: 1411, stem: 13314, fault:6042. flip_cnt: 3, stem_cnt: 1454, fault_cnt:1933 -[UP] flip: 6555, stem: 14034, fault:6042. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1929 -[UP] flip: 1813, stem: 14314, fault:6061. flip_cnt: 4, stem_cnt: 1454, fault_cnt:1927 -[UP] flip: 1357, stem: 13554, fault:6061. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1921 -[UP] flip: 3520, stem: 13494, fault:6061. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1919 -[UP] flip: 2352, stem: 13896, fault:6061. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1917 -[UP] flip: 2108, stem: 13974, fault:6080. flip_cnt: 4, stem_cnt: 1454, fault_cnt:1919 -[UP] flip: 1101, stem: 14334, fault:6194. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1932 -[UP] flip: 1441, stem: 14116, fault:6156. flip_cnt: 3, stem_cnt: 1452, fault_cnt:1929 -[UP] flip: 0, stem: 15336, fault:6156. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1929 -[UP] flip: 3668, stem: 16316, fault:6156. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1925 -[UP] flip: 3554, stem: 16576, fault:6156. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1923 -[UP] flip: 2374, stem: 15556, fault:6156. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1921 -[UP] flip: 1412, stem: 15637, fault:6156. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1920 -[UP] flip: 2264, stem: 16177, fault:6175. flip_cnt: 4, stem_cnt: 1451, fault_cnt:1918 -[UP] flip: 2208, stem: 16557, fault:6270. flip_cnt: 4, stem_cnt: 1451, fault_cnt:1933 -[UP] flip: 3395, stem: 9196, fault:6270. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1895 -[UP] flip: 6389, stem: 9916, fault:6270. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1891 -[UP] flip: 4765, stem: 10716, fault:6270. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1888 -[UP] flip: 1017, stem: 11215, fault:6289. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1891 -[UP] flip: 2395, stem: 10576, fault:6441. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1915 -[UP] flip: 698, stem: 8495, fault:6365. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1880 -[UP] flip: 1139, stem: 8796, fault:6365. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1877 -[UP] flip: 1000, stem: 8995, fault:6365. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1878 -[UP] flip: 0, stem: 8355, fault:6365. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1878 -[UP] flip: 1226, stem: 8994, fault:6384. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1879 -[UP] flip: 1456, stem: 9174, fault:6574. flip_cnt: 3, stem_cnt: 1454, fault_cnt:1892 -[UP] flip: 1004, stem: 9335, fault:6555. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1886 -[UP] flip: 2820, stem: 9513, fault:6802. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1937 -[UP] flip: 1466, stem: 9892, fault:6726. flip_cnt: 2, stem_cnt: 1456, fault_cnt:1933 -[UP] flip: 0, stem: 10112, fault:6726. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1934 -[UP] flip: 1109, stem: 10553, fault:6726. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1933 -[UP] flip: 4816, stem: 10533, fault:6726. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1929 -[UP] flip: 1500, stem: 10734, fault:6726. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1926 -[UP] flip: 4813, stem: 11214, fault:6726. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1924 -[UP] flip: 5356, stem: 11834, fault:6726. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1920 -[UP] flip: 5951, stem: 11954, fault:6726. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1916 -[UP] flip: 0, stem: 12034, fault:6726. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1916 -[UP] flip: 1145, stem: 11673, fault:6726. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1915 -[UP] flip: 3552, stem: 12093, fault:6726. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1911 -[UP] flip: 2553, stem: 12914, fault:6726. flip_cnt: 4, stem_cnt: 1454, fault_cnt:1909 -[UP] flip: 3109, stem: 12553, fault:6764. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1918 -[UP] flip: 4823, stem: 11431, fault:6669. flip_cnt: 7, stem_cnt: 1457, fault_cnt:1886 -[UP] flip: 2384, stem: 11351, fault:6726. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1878 -[UP] flip: 2704, stem: 9616, fault:6688. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1896 -[UP] flip: 2675, stem: 9855, fault:6688. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1893 -[UP] flip: 4760, stem: 10695, fault:6650. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1890 -[UP] flip: 0, stem: 10535, fault:6669. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1896 -[UP] flip: 1591, stem: 10855, fault:6669. flip_cnt: 3, stem_cnt: 1453, fault_cnt:1895 -[UP] flip: 4328, stem: 11615, fault:6669. flip_cnt: 7, stem_cnt: 1453, fault_cnt:1889 -[UP] flip: 1637, stem: 11476, fault:6650. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1884 -[UP] flip: 0, stem: 12297, fault:6650. flip_cnt: 0, stem_cnt: 1451, fault_cnt:1884 -[UP] flip: 4688, stem: 12054, fault:6707. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1896 -[UP] flip: 1223, stem: 12553, fault:6764. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1898 -[UP] flip: 0, stem: 12893, fault:6802. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1906 -[UP] flip: 4163, stem: 11431, fault:7011. flip_cnt: 7, stem_cnt: 1457, fault_cnt:1970 -[UP] flip: 3656, stem: 11430, fault:7011. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1968 -[UP] flip: 4798, stem: 12030, fault:6859. flip_cnt: 7, stem_cnt: 1458, fault_cnt:1954 -[UP] flip: 1314, stem: 11670, fault:6859. flip_cnt: 2, stem_cnt: 1458, fault_cnt:1949 -[UP] flip: 2982, stem: 11810, fault:6840. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1949 -[UP] flip: 4718, stem: 12170, fault:6802. flip_cnt: 7, stem_cnt: 1458, fault_cnt:1944 -[UP] flip: 3375, stem: 11911, fault:6783. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1926 -[UP] flip: 2189, stem: 12232, fault:6783. flip_cnt: 4, stem_cnt: 1456, fault_cnt:1924 -[UP] flip: 6626, stem: 12712, fault:6764. flip_cnt: 7, stem_cnt: 1456, fault_cnt:1920 -[UP] flip: 0, stem: 12652, fault:6764. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1920 -[UP] flip: 3460, stem: 13072, fault:6745. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1918 -[UP] flip: 0, stem: 13673, fault:6745. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1918 -[UP] flip: 842, stem: 13794, fault:6726. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1915 -[UP] flip: 3106, stem: 14254, fault:6707. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1913 -[UP] flip: 1376, stem: 14155, fault:6707. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1910 -[UP] flip: 840, stem: 12857, fault:6726. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1911 -[UP] flip: 2297, stem: 13298, fault:6726. flip_cnt: 4, stem_cnt: 1450, fault_cnt:1909 -[UP] flip: 4659, stem: 11979, fault:6669. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1912 -[UP] flip: 1262, stem: 12639, fault:6498. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1901 -[UP] flip: 0, stem: 13539, fault:6479. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1899 -[UP] flip: 2343, stem: 13458, fault:6365. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1884 -[UP] flip: 3278, stem: 12598, fault:6308. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1867 -[UP] flip: 4404, stem: 12158, fault:6289. flip_cnt: 7, stem_cnt: 1450, fault_cnt:1862 -[UP] flip: 1654, stem: 12537, fault:6289. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1868 -[UP] flip: 2702, stem: 12897, fault:6289. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1863 -[UP] flip: 0, stem: 13698, fault:6289. flip_cnt: 0, stem_cnt: 1450, fault_cnt:1863 -[UP] flip: 3529, stem: 14238, fault:6422. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1902 -[UP] flip: 4081, stem: 14018, fault:6422. flip_cnt: 7, stem_cnt: 1450, fault_cnt:1898 -[UP] flip: 1168, stem: 14337, fault:6327. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1887 -[UP] flip: 1390, stem: 15618, fault:6270. flip_cnt: 2, stem_cnt: 1450, fault_cnt:1892 -[UP] flip: 0, stem: 16278, fault:6270. flip_cnt: 0, stem_cnt: 1450, fault_cnt:1892 -[UP] flip: 4427, stem: 16416, fault:6270. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1895 -[UP] flip: 3240, stem: 16576, fault:6270. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1910 -[UP] flip: 1079, stem: 14376, fault:6346. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1938 -[UP] flip: 2732, stem: 13616, fault:6289. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1930 -[UP] flip: 5231, stem: 13353, fault:6327. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1939 -[UP] flip: 0, stem: 13593, fault:6327. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1939 -[UP] flip: 1213, stem: 14133, fault:6308. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1936 -[UP] flip: 2785, stem: 14134, fault:6308. flip_cnt: 4, stem_cnt: 1454, fault_cnt:1934 -[UP] flip: 1497, stem: 13595, fault:6289. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1928 -[UP] flip: 4620, stem: 12955, fault:6289. flip_cnt: 7, stem_cnt: 1453, fault_cnt:1924 -[UP] flip: 5698, stem: 13015, fault:6251. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1919 -[UP] flip: 5022, stem: 13715, fault:6251. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1917 -[UP] flip: 0, stem: 13635, fault:6251. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1917 -[UP] flip: 4620, stem: 13595, fault:6251. flip_cnt: 7, stem_cnt: 1453, fault_cnt:1913 -[UP] flip: 6642, stem: 13175, fault:6251. flip_cnt: 7, stem_cnt: 1453, fault_cnt:1907 -[UP] flip: 4955, stem: 13795, fault:6251. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1905 -[UP] flip: 0, stem: 14696, fault:6251. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1905 -[UP] flip: 2474, stem: 15237, fault:6251. flip_cnt: 4, stem_cnt: 1451, fault_cnt:1903 -[UP] flip: 5241, stem: 15597, fault:6099. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1863 -[UP] flip: 2409, stem: 16817, fault:6080. flip_cnt: 4, stem_cnt: 1451, fault_cnt:1861 -[UP] flip: 5703, stem: 16537, fault:6156. flip_cnt: 7, stem_cnt: 1451, fault_cnt:1883 -[UP] flip: 4249, stem: 16896, fault:6156. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1886 -[UP] flip: 3130, stem: 17116, fault:6099. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1882 -[UP] flip: 3462, stem: 16996, fault:6099. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1880 -[UP] flip: 3299, stem: 16032, fault:6156. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1893 -[UP] flip: 1051, stem: 15752, fault:6175. flip_cnt: 2, stem_cnt: 1456, fault_cnt:1897 -[UP] flip: 5822, stem: 16712, fault:6137. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1894 -[UP] flip: 0, stem: 14573, fault:6213. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1913 -[UP] flip: 2752, stem: 14512, fault:6441. flip_cnt: 4, stem_cnt: 1456, fault_cnt:1957 -[UP] flip: 1853, stem: 15453, fault:6650. flip_cnt: 4, stem_cnt: 1455, fault_cnt:1974 -[UP] flip: 1208, stem: 15214, fault:6593. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1970 -[UP] flip: 3598, stem: 14894, fault:6593. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1966 -[UP] flip: 3541, stem: 14274, fault:6593. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1961 -[UP] flip: 0, stem: 14774, fault:6593. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1955 -[UP] flip: 0, stem: 16974, fault:6593. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1955 -[UP] flip: 5849, stem: 16153, fault:6593. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1951 -[UP] flip: 6524, stem: 17073, fault:6593. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1947 -[UP] flip: 4939, stem: 16893, fault:6555. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1945 -[UP] flip: 2657, stem: 17253, fault:6517. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1941 -[UP] flip: 2288, stem: 15053, fault:6536. flip_cnt: 4, stem_cnt: 1455, fault_cnt:1939 -[UP] flip: 5071, stem: 15533, fault:6555. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1945 -[UP] flip: 2429, stem: 15353, fault:6574. flip_cnt: 4, stem_cnt: 1455, fault_cnt:1943 -[UP] flip: 4516, stem: 14733, fault:6574. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1939 -[UP] flip: 5080, stem: 12472, fault:6536. flip_cnt: 7, stem_cnt: 1456, fault_cnt:1934 -[UP] flip: 1556, stem: 11953, fault:6631. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1959 -[UP] flip: 2701, stem: 11753, fault:6612. flip_cnt: 4, stem_cnt: 1455, fault_cnt:1957 -[UP] flip: 3149, stem: 12312, fault:6612. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1952 -[UP] flip: 0, stem: 12612, fault:6612. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1958 -[UP] flip: 6736, stem: 13372, fault:6593. flip_cnt: 7, stem_cnt: 1456, fault_cnt:1954 -[UP] flip: 4673, stem: 13532, fault:6536. flip_cnt: 7, stem_cnt: 1456, fault_cnt:1950 -[UP] flip: 4134, stem: 13112, fault:6422. flip_cnt: 7, stem_cnt: 1456, fault_cnt:1940 -[UP] flip: 1166, stem: 13332, fault:6422. flip_cnt: 2, stem_cnt: 1456, fault_cnt:1939 -[UP] flip: 1580, stem: 13013, fault:6403. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1934 -[UP] flip: 4498, stem: 15353, fault:6384. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1930 -[UP] flip: 999, stem: 15834, fault:6384. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1925 -[UP] flip: 3155, stem: 15534, fault:6384. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1923 -[UP] flip: 3564, stem: 15994, fault:6384. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1921 -[UP] flip: 1127, stem: 16135, fault:6365. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1918 -[UP] flip: 1541, stem: 15534, fault:6365. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1917 -[UP] flip: 3150, stem: 16014, fault:6346. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1915 -[UP] flip: 5748, stem: 13673, fault:5947. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1847 -[UP] flip: 5374, stem: 14173, fault:5947. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1844 -[UP] flip: 4571, stem: 15033, fault:5947. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1840 -[UP] flip: 1279, stem: 16274, fault:5947. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1837 -[UP] flip: 1137, stem: 11996, fault:5947. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1825 -[UP] flip: 6004, stem: 12577, fault:5947. flip_cnt: 7, stem_cnt: 1451, fault_cnt:1821 -[UP] flip: 0, stem: 13159, fault:5947. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1823 -[UP] flip: 2325, stem: 13619, fault:5947. flip_cnt: 3, stem_cnt: 1449, fault_cnt:1820 -[UP] flip: 6064, stem: 14459, fault:5928. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1816 -[UP] flip: 3491, stem: 14699, fault:5928. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1814 -[UP] flip: 1780, stem: 13338, fault:5928. flip_cnt: 3, stem_cnt: 1450, fault_cnt:1811 -[UP] flip: 2584, stem: 13418, fault:5928. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1809 -[UP] flip: 6380, stem: 12617, fault:5890. flip_cnt: 7, stem_cnt: 1451, fault_cnt:1822 -[UP] flip: 845, stem: 13158, fault:5871. flip_cnt: 2, stem_cnt: 1450, fault_cnt:1819 -[UP] flip: 2122, stem: 11876, fault:6403. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1915 -[UP] flip: 0, stem: 11995, fault:6403. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1915 -[UP] flip: 3681, stem: 12954, fault:6403. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1915 -[UP] flip: 3571, stem: 13053, fault:6422. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1916 -[UP] flip: 3673, stem: 13493, fault:6422. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1925 -[UP] flip: 1194, stem: 13674, fault:6555. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1961 -[UP] flip: 2627, stem: 13394, fault:6555. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1959 -[UP] flip: 2851, stem: 14214, fault:6536. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1951 -[UP] flip: 2654, stem: 14715, fault:6498. flip_cnt: 4, stem_cnt: 1453, fault_cnt:1940 -[UP] flip: 0, stem: 14975, fault:6498. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1938 -[UP] flip: 3180, stem: 15595, fault:6498. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1936 -[UP] flip: 2130, stem: 15594, fault:6498. flip_cnt: 4, stem_cnt: 1454, fault_cnt:1935 -[UP] flip: 1444, stem: 14572, fault:6574. flip_cnt: 2, stem_cnt: 1456, fault_cnt:1949 -[UP] flip: 4021, stem: 14051, fault:6802. flip_cnt: 7, stem_cnt: 1457, fault_cnt:1977 -[UP] flip: 5081, stem: 14391, fault:6479. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1903 -[UP] flip: 5992, stem: 15131, fault:6536. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1917 -[UP] flip: 1225, stem: 15611, fault:6536. flip_cnt: 2, stem_cnt: 1457, fault_cnt:1914 -[UP] flip: 1699, stem: 15990, fault:6536. flip_cnt: 2, stem_cnt: 1458, fault_cnt:1916 -[UP] flip: 5086, stem: 17010, fault:6536. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1920 -[UP] flip: 1284, stem: 17150, fault:6536. flip_cnt: 2, stem_cnt: 1458, fault_cnt:1919 -[UP] flip: 2622, stem: 15411, fault:6536. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1912 -[UP] flip: 1069, stem: 15252, fault:6232. flip_cnt: 2, stem_cnt: 1456, fault_cnt:1867 -[UP] flip: 0, stem: 16252, fault:6232. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1867 -[UP] flip: 4980, stem: 16332, fault:6194. flip_cnt: 7, stem_cnt: 1456, fault_cnt:1863 -[UP] flip: 0, stem: 15173, fault:5909. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1828 -[UP] flip: 5230, stem: 15653, fault:5909. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1824 -[UP] flip: 0, stem: 16133, fault:5909. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1815 -[UP] flip: 2487, stem: 16094, fault:5909. flip_cnt: 4, stem_cnt: 1454, fault_cnt:1813 -[UP] flip: 5014, stem: 16454, fault:5909. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1806 -[UP] flip: 1394, stem: 17335, fault:5890. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1803 -[UP] flip: 1433, stem: 17656, fault:5871. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1800 -[UP] flip: 3160, stem: 18096, fault:5871. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1798 -[UP] flip: 4528, stem: 17716, fault:5871. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1794 -[UP] flip: 2384, stem: 18615, fault:5890. flip_cnt: 4, stem_cnt: 1453, fault_cnt:1795 -[UP] flip: 0, stem: 19636, fault:6175. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1833 -[UP] flip: 1537, stem: 18957, fault:6156. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1830 -[UP] flip: 1970, stem: 19297, fault:6156. flip_cnt: 3, stem_cnt: 1451, fault_cnt:1828 -[UP] flip: 2936, stem: 18657, fault:6137. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1824 -[UP] flip: 3551, stem: 18337, fault:6099. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1819 -[UP] flip: 0, stem: 14995, fault:6023. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1811 -[UP] flip: 1062, stem: 14214, fault:6023. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1810 -[UP] flip: 2877, stem: 14674, fault:6004. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1808 -[UP] flip: 5190, stem: 14794, fault:5814. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1737 -[UP] flip: 1095, stem: 15354, fault:5814. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1734 -[UP] flip: 6754, stem: 16074, fault:5814. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1730 -[UP] flip: 3884, stem: 15654, fault:5814. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1726 -[UP] flip: 1274, stem: 15175, fault:5814. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1721 -[UP] flip: 1534, stem: 14555, fault:5814. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1722 -[UP] flip: 2889, stem: 14838, fault:5795. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1718 -[UP] flip: 4203, stem: 13978, fault:5795. flip_cnt: 7, stem_cnt: 1450, fault_cnt:1712 -[UP] flip: 0, stem: 13757, fault:5795. flip_cnt: 0, stem_cnt: 1451, fault_cnt:1712 -[UP] flip: 3726, stem: 14156, fault:5833. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1715 -[UP] flip: 2395, stem: 14456, fault:5985. flip_cnt: 3, stem_cnt: 1452, fault_cnt:1736 -[UP] flip: 2727, stem: 11476, fault:6004. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1730 -[UP] flip: 0, stem: 11695, fault:6175. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1740 -[UP] flip: 2720, stem: 11514, fault:6289. flip_cnt: 4, stem_cnt: 1454, fault_cnt:1758 -[UP] flip: 3689, stem: 11074, fault:6346. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1764 -[UP] flip: 0, stem: 11034, fault:6270. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1758 -[UP] flip: 1753, stem: 11535, fault:6270. flip_cnt: 3, stem_cnt: 1453, fault_cnt:1756 -[UP] flip: 6106, stem: 11634, fault:6232. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1753 -[UP] flip: 1539, stem: 11975, fault:6232. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1752 -[UP] flip: 0, stem: 13035, fault:6232. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1752 -[UP] flip: 0, stem: 12355, fault:6270. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1760 -[UP] flip: 3816, stem: 11955, fault:6251. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1756 -[UP] flip: 1204, stem: 11535, fault:6916. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1890 -[UP] flip: 0, stem: 12855, fault:6916. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1890 -[UP] flip: 0, stem: 12855, fault:6916. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1890 -[UP] flip: 1263, stem: 12736, fault:6916. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1887 -[UP] flip: 6476, stem: 12216, fault:6878. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1883 -[UP] flip: 2903, stem: 12094, fault:6289. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1760 -[UP] flip: 4271, stem: 8753, fault:6384. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1823 -[UP] flip: 0, stem: 10293, fault:6384. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1823 -[UP] flip: 0, stem: 10593, fault:6384. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1823 -[UP] flip: 1177, stem: 9511, fault:6384. flip_cnt: 2, stem_cnt: 1457, fault_cnt:1824 -[UP] flip: 3530, stem: 9150, fault:6422. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1838 -[UP] flip: 0, stem: 8810, fault:6422. flip_cnt: 0, stem_cnt: 1458, fault_cnt:1847 -[UP] flip: 0, stem: 8930, fault:6422. flip_cnt: 0, stem_cnt: 1458, fault_cnt:1847 -[UP] flip: 0, stem: 9851, fault:6422. flip_cnt: 0, stem_cnt: 1457, fault_cnt:1847 -[UP] flip: 2487, stem: 9830, fault:6422. flip_cnt: 4, stem_cnt: 1458, fault_cnt:1849 -[UP] flip: 5308, stem: 9730, fault:6745. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1905 -[UP] flip: 5969, stem: 10007, fault:6745. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1903 -[UP] flip: 0, stem: 10047, fault:6745. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1903 -[UP] flip: 1509, stem: 10048, fault:6821. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1906 -[UP] flip: 1247, stem: 9988, fault:6821. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1903 -[UP] flip: 2778, stem: 10188, fault:6802. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1901 -[UP] flip: 1058, stem: 9268, fault:6783. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1897 -[UP] flip: 1639, stem: 9209, fault:6726. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1894 -[UP] flip: 4797, stem: 9629, fault:6726. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1890 -[UP] flip: 1299, stem: 10150, fault:6707. flip_cnt: 2, stem_cnt: 1458, fault_cnt:1885 -[UP] flip: 3079, stem: 10510, fault:6707. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1883 -[UP] flip: 0, stem: 9752, fault:6669. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1859 -[UP] flip: 1870, stem: 10652, fault:6669. flip_cnt: 3, stem_cnt: 1456, fault_cnt:1858 -[UP] flip: 3274, stem: 10971, fault:6669. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1863 -[UP] flip: 0, stem: 10851, fault:6669. flip_cnt: 0, stem_cnt: 1457, fault_cnt:1863 -[UP] flip: 0, stem: 10930, fault:6669. flip_cnt: 0, stem_cnt: 1458, fault_cnt:1863 -[UP] flip: 3673, stem: 10310, fault:6669. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1860 -[UP] flip: 1222, stem: 9708, fault:6707. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1874 -[UP] flip: 5444, stem: 9928, fault:6764. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1888 -[UP] flip: 3626, stem: 9007, fault:6840. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1903 -[UP] flip: 0, stem: 8027, fault:6840. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1892 -[UP] flip: 0, stem: 8668, fault:6840. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1892 -[UP] flip: 3686, stem: 9328, fault:6821. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1890 -[UP] flip: 5384, stem: 9188, fault:6821. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1888 -[UP] flip: 1371, stem: 8509, fault:6802. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1885 -[UP] flip: 0, stem: 8869, fault:6878. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1900 -[UP] flip: 0, stem: 8889, fault:6878. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1900 -[UP] flip: 1375, stem: 9066, fault:6897. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1903 -[UP] flip: 1389, stem: 9607, fault:6897. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1917 -[UP] flip: 2125, stem: 9607, fault:6897. flip_cnt: 3, stem_cnt: 1461, fault_cnt:1918 -[UP] flip: 0, stem: 9227, fault:6897. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1920 -[UP] flip: 2503, stem: 8807, fault:6916. flip_cnt: 4, stem_cnt: 1461, fault_cnt:1918 -[UP] flip: 0, stem: 9787, fault:6954. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1926 -[UP] flip: 3866, stem: 9847, fault:6954. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1922 -[UP] flip: 0, stem: 11007, fault:6954. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1920 -[UP] flip: 4737, stem: 10425, fault:7296. flip_cnt: 7, stem_cnt: 1463, fault_cnt:2001 -[UP] flip: 0, stem: 9964, fault:7277. flip_cnt: 0, stem_cnt: 1464, fault_cnt:2000 -[UP] flip: 1213, stem: 9764, fault:7277. flip_cnt: 2, stem_cnt: 1464, fault_cnt:2001 -[UP] flip: 1067, stem: 10203, fault:7277. flip_cnt: 2, stem_cnt: 1465, fault_cnt:2004 -[UP] flip: 0, stem: 9621, fault:7334. flip_cnt: 0, stem_cnt: 1467, fault_cnt:2013 -[UP] flip: 0, stem: 8320, fault:7334. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2017 -[UP] flip: 4823, stem: 8600, fault:7334. flip_cnt: 7, stem_cnt: 1468, fault_cnt:2013 -[UP] flip: 7048, stem: 8980, fault:7334. flip_cnt: 7, stem_cnt: 1468, fault_cnt:2009 -[UP] flip: 2522, stem: 8781, fault:7334. flip_cnt: 4, stem_cnt: 1467, fault_cnt:2007 -[UP] flip: 4351, stem: 8381, fault:7277. flip_cnt: 7, stem_cnt: 1467, fault_cnt:2000 -[UP] flip: 0, stem: 8480, fault:7277. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1998 -[UP] flip: 2562, stem: 7280, fault:7277. flip_cnt: 4, stem_cnt: 1468, fault_cnt:1996 -[UP] flip: 4705, stem: 7540, fault:7258. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1994 -[UP] flip: 3666, stem: 8202, fault:7239. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1985 -[UP] flip: 3645, stem: 7780, fault:7239. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1988 -[UP] flip: 2995, stem: 8100, fault:7258. flip_cnt: 5, stem_cnt: 1468, fault_cnt:2006 -[UP] flip: 0, stem: 8360, fault:7258. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2006 -[UP] flip: 855, stem: 7160, fault:7182. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1986 -[UP] flip: 0, stem: 7080, fault:7182. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1986 -[UP] flip: 3896, stem: 6720, fault:7182. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1984 -[UP] flip: 5848, stem: 7160, fault:7144. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1981 -[UP] flip: 0, stem: 8140, fault:7144. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1981 -[UP] flip: 2746, stem: 8218, fault:7144. flip_cnt: 4, stem_cnt: 1470, fault_cnt:1984 -[UP] flip: 3532, stem: 5358, fault:7125. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1988 -[UP] flip: 3097, stem: 5219, fault:7125. flip_cnt: 5, stem_cnt: 1469, fault_cnt:1986 -[UP] flip: 0, stem: 5559, fault:7125. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1986 -[UP] flip: 0, stem: 6339, fault:7125. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1986 -[UP] flip: 0, stem: 6419, fault:7125. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1986 -[UP] flip: 1244, stem: 6920, fault:7125. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1985 -[UP] flip: 3470, stem: 6420, fault:7125. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1981 -[UP] flip: 1524, stem: 7102, fault:7106. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1978 -[UP] flip: 3329, stem: 7082, fault:7087. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1976 -[UP] flip: 2517, stem: 7101, fault:7068. flip_cnt: 4, stem_cnt: 1467, fault_cnt:1973 -[UP] flip: 7294, stem: 7261, fault:7049. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1973 -[UP] flip: 0, stem: 7561, fault:7049. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1973 -[UP] flip: 2818, stem: 7481, fault:7049. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1969 -[UP] flip: 1173, stem: 7762, fault:6688. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1904 -[UP] flip: 1400, stem: 8102, fault:6688. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1903 -[UP] flip: 0, stem: 8381, fault:6688. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1903 -[UP] flip: 0, stem: 9081, fault:6688. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1903 -[UP] flip: 4524, stem: 8621, fault:6688. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1911 -[UP] flip: 2547, stem: 8141, fault:6707. flip_cnt: 4, stem_cnt: 1467, fault_cnt:1909 -[UP] flip: 1661, stem: 7703, fault:6688. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1904 -[UP] flip: 2524, stem: 7802, fault:6688. flip_cnt: 4, stem_cnt: 1466, fault_cnt:1905 -[UP] flip: 0, stem: 8142, fault:6707. flip_cnt: 0, stem_cnt: 1466, fault_cnt:1919 -[UP] flip: 6957, stem: 8322, fault:6688. flip_cnt: 7, stem_cnt: 1466, fault_cnt:1915 -[UP] flip: 5886, stem: 8460, fault:6669. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1911 -[UP] flip: 4838, stem: 9300, fault:6650. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1907 -[UP] flip: 0, stem: 9460, fault:6650. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1905 -[UP] flip: 1240, stem: 9141, fault:6631. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1902 -[UP] flip: 3681, stem: 9221, fault:6631. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1899 -[UP] flip: 5275, stem: 9801, fault:6631. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1893 -[UP] flip: 5506, stem: 9742, fault:6631. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1891 -[UP] flip: 6881, stem: 10822, fault:6612. flip_cnt: 7, stem_cnt: 1466, fault_cnt:1887 -[UP] flip: 1630, stem: 10041, fault:6612. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1884 -[UP] flip: 0, stem: 10461, fault:6612. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1884 -[UP] flip: 1311, stem: 9721, fault:6612. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1885 -[UP] flip: 4857, stem: 10101, fault:6897. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1911 -[UP] flip: 2368, stem: 7862, fault:6916. flip_cnt: 4, stem_cnt: 1466, fault_cnt:1913 -[UP] flip: 1056, stem: 7881, fault:6916. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1918 -[UP] flip: 5779, stem: 7521, fault:6916. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1916 -[UP] flip: 0, stem: 8302, fault:6916. flip_cnt: 0, stem_cnt: 1466, fault_cnt:1916 -[UP] flip: 4741, stem: 8542, fault:6916. flip_cnt: 7, stem_cnt: 1466, fault_cnt:1912 -[UP] flip: 1311, stem: 8723, fault:6859. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1909 -[UP] flip: 0, stem: 9464, fault:6859. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1909 -[UP] flip: 7086, stem: 9864, fault:6802. flip_cnt: 7, stem_cnt: 1464, fault_cnt:1905 -[UP] flip: 1319, stem: 9203, fault:6802. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1906 -[UP] flip: 2603, stem: 9364, fault:6859. flip_cnt: 4, stem_cnt: 1464, fault_cnt:1912 -[UP] flip: 6019, stem: 7423, fault:6859. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1917 -[UP] flip: 6205, stem: 6663, fault:6859. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1913 -[UP] flip: 0, stem: 6842, fault:6859. flip_cnt: 0, stem_cnt: 1466, fault_cnt:1913 -[UP] flip: 3933, stem: 7202, fault:6859. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1911 -[UP] flip: 0, stem: 7321, fault:6859. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1911 -[UP] flip: 1375, stem: 7401, fault:6859. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1910 -[UP] flip: 3645, stem: 7340, fault:6878. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1929 -[UP] flip: 2523, stem: 7320, fault:6897. flip_cnt: 4, stem_cnt: 1468, fault_cnt:1925 -[UP] flip: 1597, stem: 6079, fault:6935. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1934 -[UP] flip: 1352, stem: 5617, fault:7296. flip_cnt: 2, stem_cnt: 1471, fault_cnt:2001 -[UP] flip: 5720, stem: 5777, fault:7296. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1999 -[UP] flip: 3434, stem: 6077, fault:7277. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1997 -[UP] flip: 1449, stem: 6017, fault:7277. flip_cnt: 2, stem_cnt: 1471, fault_cnt:1994 -[UP] flip: 1247, stem: 6718, fault:7277. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1991 -[UP] flip: 3823, stem: 7138, fault:7277. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1989 -[UP] flip: 3843, stem: 6998, fault:7182. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1979 -[UP] flip: 4449, stem: 6858, fault:7144. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1973 -[UP] flip: 0, stem: 6319, fault:6973. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1951 -[UP] flip: 3351, stem: 5858, fault:6954. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1947 -[UP] flip: 1567, stem: 5619, fault:6954. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1950 -[UP] flip: 2010, stem: 5719, fault:6954. flip_cnt: 3, stem_cnt: 1469, fault_cnt:1949 -[UP] flip: 0, stem: 6159, fault:6954. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1949 -[UP] flip: 0, stem: 6359, fault:6954. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1949 -[UP] flip: 4667, stem: 5479, fault:6916. flip_cnt: 7, stem_cnt: 1469, fault_cnt:1945 -[UP] flip: 5778, stem: 5919, fault:6897. flip_cnt: 5, stem_cnt: 1469, fault_cnt:1941 -[UP] flip: 0, stem: 6379, fault:6897. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1941 -[UP] flip: 6583, stem: 6699, fault:6897. flip_cnt: 7, stem_cnt: 1469, fault_cnt:1937 -[UP] flip: 0, stem: 6339, fault:6897. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1937 -[UP] flip: 0, stem: 8600, fault:6897. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1937 -[UP] flip: 2744, stem: 8278, fault:6897. flip_cnt: 4, stem_cnt: 1470, fault_cnt:1940 -[UP] flip: 1551, stem: 9098, fault:7144. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2042 -[UP] flip: 0, stem: 8938, fault:7144. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2042 -[UP] flip: 2586, stem: 8559, fault:7144. flip_cnt: 4, stem_cnt: 1469, fault_cnt:2040 -[UP] flip: 3508, stem: 7859, fault:7125. flip_cnt: 5, stem_cnt: 1469, fault_cnt:2038 -[UP] flip: 0, stem: 8640, fault:7125. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2038 -[UP] flip: 0, stem: 8640, fault:7125. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2038 -[UP] flip: 0, stem: 9660, fault:7125. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2038 -[UP] flip: 5268, stem: 9840, fault:7125. flip_cnt: 7, stem_cnt: 1468, fault_cnt:2034 -[UP] flip: 3978, stem: 7678, fault:7125. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2019 -[UP] flip: 0, stem: 7459, fault:7125. flip_cnt: 0, stem_cnt: 1469, fault_cnt:2019 -[UP] flip: 4944, stem: 7079, fault:7125. flip_cnt: 7, stem_cnt: 1469, fault_cnt:2015 -[UP] flip: 1412, stem: 6699, fault:7125. flip_cnt: 2, stem_cnt: 1469, fault_cnt:2012 -[UP] flip: 1668, stem: 7300, fault:7106. flip_cnt: 2, stem_cnt: 1468, fault_cnt:2009 -[UP] flip: 5179, stem: 7240, fault:7106. flip_cnt: 7, stem_cnt: 1468, fault_cnt:2008 -[UP] flip: 0, stem: 7480, fault:6859. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1899 -[UP] flip: 3779, stem: 9040, fault:6859. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1897 -[UP] flip: 0, stem: 9300, fault:6859. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1897 -[UP] flip: 0, stem: 9420, fault:6859. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1897 -[UP] flip: 3337, stem: 8660, fault:6840. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1895 -[UP] flip: 1345, stem: 7460, fault:6840. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1891 -[UP] flip: 0, stem: 7559, fault:6840. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1889 -[UP] flip: 934, stem: 7858, fault:6840. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1892 -[UP] flip: 1493, stem: 8139, fault:7372. flip_cnt: 2, stem_cnt: 1469, fault_cnt:2026 -[UP] flip: 7492, stem: 8879, fault:7353. flip_cnt: 7, stem_cnt: 1469, fault_cnt:2022 -[UP] flip: 2415, stem: 6839, fault:7372. flip_cnt: 4, stem_cnt: 1469, fault_cnt:2020 -[UP] flip: 2501, stem: 5337, fault:7505. flip_cnt: 4, stem_cnt: 1471, fault_cnt:2038 -[UP] flip: 4982, stem: 4715, fault:7524. flip_cnt: 4, stem_cnt: 1473, fault_cnt:2050 -[UP] flip: 7000, stem: 5014, fault:7543. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2050 -[UP] flip: 0, stem: 5894, fault:7543. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2050 -[UP] flip: 7257, stem: 5994, fault:7543. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2046 -[UP] flip: 1501, stem: 5615, fault:7486. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2043 -[UP] flip: 5731, stem: 5515, fault:7486. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2041 -[UP] flip: 4951, stem: 5755, fault:7448. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2037 -[UP] flip: 0, stem: 5755, fault:7296. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2025 -[UP] flip: 0, stem: 5795, fault:7296. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2025 -[UP] flip: 3921, stem: 5575, fault:7296. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2023 -[UP] flip: 1086, stem: 5514, fault:7296. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2024 -[UP] flip: 0, stem: 4375, fault:7296. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2033 -[UP] flip: 0, stem: 4934, fault:7296. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2033 -[UP] flip: 0, stem: 5034, fault:7296. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2033 -[UP] flip: 900, stem: 5655, fault:7277. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2030 -[UP] flip: 5467, stem: 5675, fault:7239. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2026 -[UP] flip: 1058, stem: 5836, fault:7106. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2017 -[UP] flip: 4900, stem: 5056, fault:7106. flip_cnt: 7, stem_cnt: 1472, fault_cnt:2013 -[UP] flip: 2644, stem: 4396, fault:7125. flip_cnt: 4, stem_cnt: 1472, fault_cnt:2009 -[UP] flip: 0, stem: 3754, fault:7391. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2060 -[UP] flip: 1537, stem: 3895, fault:7391. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2057 -[UP] flip: 0, stem: 3795, fault:7486. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2070 -[UP] flip: 0, stem: 3855, fault:7486. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2070 -[UP] flip: 4618, stem: 4155, fault:7448. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2066 -[UP] flip: 7436, stem: 4455, fault:7106. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2015 -[UP] flip: 0, stem: 4355, fault:7106. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2015 -[UP] flip: 3937, stem: 4533, fault:7106. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2019 -[UP] flip: 0, stem: 4553, fault:7201. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2041 -[UP] flip: 3823, stem: 4793, fault:7201. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2040 -[UP] flip: 2595, stem: 5154, fault:7201. flip_cnt: 4, stem_cnt: 1474, fault_cnt:2038 -[UP] flip: 0, stem: 5174, fault:7163. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2031 -[UP] flip: 0, stem: 4754, fault:7163. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2031 -[UP] flip: 4864, stem: 4454, fault:7163. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2027 -[UP] flip: 0, stem: 4234, fault:7163. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2027 -[UP] flip: 4037, stem: 4494, fault:7163. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2025 -[UP] flip: 0, stem: 4295, fault:6973. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2007 -[UP] flip: 2046, stem: 4655, fault:6954. flip_cnt: 3, stem_cnt: 1473, fault_cnt:2006 -[UP] flip: 3942, stem: 4775, fault:6954. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2002 -[UP] flip: 0, stem: 5576, fault:6669. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1884 -[UP] flip: 6268, stem: 5356, fault:6669. flip_cnt: 5, stem_cnt: 1472, fault_cnt:1882 -[UP] flip: 0, stem: 5196, fault:6669. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1882 -[UP] flip: 0, stem: 4914, fault:6669. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1882 -[UP] flip: 0, stem: 5434, fault:6669. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1882 -[UP] flip: 0, stem: 6155, fault:6669. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1882 -[UP] flip: 0, stem: 5835, fault:6669. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1882 -[UP] flip: 0, stem: 6235, fault:6669. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1882 -[UP] flip: 0, stem: 5695, fault:6669. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1882 -[UP] flip: 0, stem: 5616, fault:6669. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1882 -[UP] flip: 0, stem: 5916, fault:6669. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1882 -[UP] flip: 0, stem: 6456, fault:6669. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1882 -[UP] flip: 2565, stem: 4892, fault:6669. flip_cnt: 4, stem_cnt: 1476, fault_cnt:1880 -[UP] flip: 2953, stem: 5192, fault:6840. flip_cnt: 4, stem_cnt: 1476, fault_cnt:1919 -[UP] flip: 4854, stem: 5052, fault:7068. flip_cnt: 7, stem_cnt: 1476, fault_cnt:1963 -[UP] flip: 3420, stem: 5392, fault:7049. flip_cnt: 5, stem_cnt: 1476, fault_cnt:1961 -[UP] flip: 3051, stem: 5732, fault:6840. flip_cnt: 5, stem_cnt: 1476, fault_cnt:1916 -[UP] flip: 0, stem: 5311, fault:7201. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2073 -[UP] flip: 6299, stem: 4670, fault:7334. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2083 -[UP] flip: 0, stem: 5271, fault:7334. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2083 -[UP] flip: 1088, stem: 5431, fault:7334. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2080 -[UP] flip: 0, stem: 5711, fault:7334. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2080 -[UP] flip: 0, stem: 5651, fault:7334. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2080 -[UP] flip: 3580, stem: 4809, fault:7391. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2092 -[UP] flip: 1650, stem: 5050, fault:7372. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2087 -[UP] flip: 0, stem: 4549, fault:7372. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2087 -[UP] flip: 4875, stem: 4369, fault:7372. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2083 -[UP] flip: 1299, stem: 3850, fault:7353. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2080 -[UP] flip: 0, stem: 4130, fault:7353. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2080 -[UP] flip: 0, stem: 4651, fault:7353. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2080 -[UP] flip: 0, stem: 4931, fault:7353. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2080 -[UP] flip: 0, stem: 5631, fault:7353. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2080 -[UP] flip: 1320, stem: 5009, fault:7353. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2081 -[UP] flip: 3922, stem: 5009, fault:7410. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2104 -[UP] flip: 4660, stem: 6409, fault:7201. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2014 -[UP] flip: 3928, stem: 4988, fault:7201. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2016 -[UP] flip: 2761, stem: 4326, fault:7429. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2131 -[UP] flip: 1703, stem: 2687, fault:7410. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2131 -[UP] flip: 7690, stem: 3467, fault:7391. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2127 -[UP] flip: 5913, stem: 4287, fault:7372. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2124 -[UP] flip: 2669, stem: 2867, fault:7372. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2133 -[UP] flip: 3381, stem: 2647, fault:7353. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2128 -[UP] flip: 7711, stem: 3266, fault:7372. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2135 -[UP] flip: 0, stem: 2827, fault:7372. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2128 -[UP] flip: 4907, stem: 2427, fault:7353. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2129 -[UP] flip: 0, stem: 3847, fault:7410. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2153 -[UP] flip: 4673, stem: 3746, fault:7410. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2149 -[UP] flip: 3398, stem: 2545, fault:7410. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2144 -[UP] flip: 4897, stem: 2565, fault:7334. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2116 -[UP] flip: 0, stem: 845, fault:7334. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2114 -[UP] flip: 1380, stem: 865, fault:7334. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2119 -[UP] flip: 0, stem: 1165, fault:7334. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2117 -[UP] flip: 2161, stem: 1545, fault:7334. flip_cnt: 3, stem_cnt: 1483, fault_cnt:2116 -[UP] flip: 3404, stem: 1605, fault:7391. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2140 -[UP] flip: 6585, stem: 2145, fault:7334. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2114 -[UP] flip: 459, stem: 3206, fault:7334. flip_cnt: 1, stem_cnt: 1482, fault_cnt:2111 -[UP] flip: 7491, stem: 3026, fault:7334. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2107 -[UP] flip: 1166, stem: 2526, fault:7334. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2104 -[UP] flip: 3887, stem: 3286, fault:7334. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2102 -[UP] flip: 0, stem: 3226, fault:7334. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2096 -[UP] flip: 0, stem: 3106, fault:7334. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2096 -[UP] flip: 0, stem: 3087, fault:7334. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2096 -[UP] flip: 0, stem: 3447, fault:7334. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2096 -[UP] flip: 0, stem: 3507, fault:7334. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2096 -[UP] flip: 460, stem: 3026, fault:7334. flip_cnt: 1, stem_cnt: 1482, fault_cnt:2099 -[UP] flip: 3390, stem: 1385, fault:7334. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2102 -[UP] flip: 0, stem: 1365, fault:7391. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2140 -[UP] flip: 2165, stem: 1704, fault:7391. flip_cnt: 3, stem_cnt: 1484, fault_cnt:2139 -[UP] flip: 3955, stem: 1624, fault:7448. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2157 -[UP] flip: 1086, stem: 1645, fault:7448. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2148 -[UP] flip: 4726, stem: 2445, fault:7448. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2144 -[UP] flip: 0, stem: 1786, fault:7448. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2111 -[UP] flip: 461, stem: 1786, fault:7448. flip_cnt: 1, stem_cnt: 1482, fault_cnt:2108 -[UP] flip: 1088, stem: 1283, fault:7448. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2111 -[UP] flip: 4016, stem: 3285, fault:7448. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2162 -[UP] flip: 4021, stem: 1403, fault:7429. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2158 -[UP] flip: 2976, stem: 2605, fault:7448. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2161 -[UP] flip: 2979, stem: 1523, fault:7448. flip_cnt: 4, stem_cnt: 1485, fault_cnt:2161 -[UP] flip: 7401, stem: 3705, fault:7429. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2162 -[UP] flip: 1565, stem: 4846, fault:7391. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2155 -[UP] flip: 5765, stem: 3646, fault:7391. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2153 -[UP] flip: 0, stem: 4866, fault:7391. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2153 -[UP] flip: 0, stem: 4906, fault:7391. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2153 -[UP] flip: 3931, stem: 3785, fault:7353. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2150 -[UP] flip: 1581, stem: 4266, fault:7372. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2153 -[UP] flip: 1594, stem: 4767, fault:7372. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2152 -[UP] flip: 0, stem: 4087, fault:7372. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2152 -[UP] flip: 7706, stem: 4267, fault:7353. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2148 -[UP] flip: 8440, stem: 5187, fault:7334. flip_cnt: 6, stem_cnt: 1481, fault_cnt:2144 -[UP] flip: 7250, stem: 4147, fault:7315. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2142 -[UP] flip: 4653, stem: 4547, fault:7277. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2138 -[UP] flip: 8636, stem: 3266, fault:7277. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2134 -[UP] flip: 0, stem: 4507, fault:7277. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2139 -[UP] flip: 0, stem: 5107, fault:7277. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2139 -[UP] flip: 6219, stem: 4447, fault:7277. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2137 -[UP] flip: 1431, stem: 6368, fault:7258. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2134 -[UP] flip: 5770, stem: 5768, fault:7239. flip_cnt: 4, stem_cnt: 1480, fault_cnt:2132 -[UP] flip: 6445, stem: 5448, fault:7220. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2128 -[UP] flip: 0, stem: 6189, fault:7220. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2128 -[UP] flip: 3866, stem: 4148, fault:7201. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2125 -[UP] flip: 0, stem: 4788, fault:7201. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2127 -[UP] flip: 0, stem: 4868, fault:7201. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2127 -[UP] flip: 0, stem: 4688, fault:7201. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2127 -[UP] flip: 1546, stem: 5829, fault:7182. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2124 -[UP] flip: 0, stem: 5228, fault:7182. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2124 -[UP] flip: 0, stem: 6429, fault:7182. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2124 -[UP] flip: 0, stem: 5949, fault:7182. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2124 -[UP] flip: 8141, stem: 6829, fault:7182. flip_cnt: 6, stem_cnt: 1479, fault_cnt:2120 -[UP] flip: 8147, stem: 6889, fault:7182. flip_cnt: 6, stem_cnt: 1479, fault_cnt:2121 -[UP] flip: 1550, stem: 5428, fault:7201. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2123 -[UP] flip: 4120, stem: 4146, fault:7334. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2146 -[UP] flip: 4101, stem: 4526, fault:7334. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2146 -[UP] flip: 6658, stem: 4506, fault:7296. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2144 -[UP] flip: 1501, stem: 4867, fault:7277. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2141 -[UP] flip: 0, stem: 4347, fault:7277. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2141 -[UP] flip: 0, stem: 4347, fault:7277. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2141 -[UP] flip: 3890, stem: 3745, fault:7296. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2144 -[UP] flip: 3353, stem: 3364, fault:7315. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2150 -[UP] flip: 1368, stem: 3365, fault:7410. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2155 -[UP] flip: 4015, stem: 3526, fault:7410. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2153 -[UP] flip: 7431, stem: 3746, fault:7391. flip_cnt: 6, stem_cnt: 1482, fault_cnt:2148 -[UP] flip: 3954, stem: 3886, fault:7372. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2146 -[UP] flip: 3903, stem: 3526, fault:7353. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2143 -[UP] flip: 3967, stem: 3686, fault:7353. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2140 -[UP] flip: 3910, stem: 2044, fault:7277. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2131 -[UP] flip: 3634, stem: 1684, fault:7372. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2140 -[UP] flip: 0, stem: 1484, fault:7372. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2140 -[UP] flip: 1397, stem: 2145, fault:7372. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2139 -[UP] flip: 6213, stem: 2885, fault:7353. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2136 -[UP] flip: 5030, stem: 2285, fault:7315. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2132 -[UP] flip: 6784, stem: 2205, fault:7296. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2130 -[UP] flip: 7444, stem: 2605, fault:7277. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2126 -[UP] flip: 4744, stem: 2525, fault:7258. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2122 -[UP] flip: 2987, stem: 1623, fault:7258. flip_cnt: 4, stem_cnt: 1485, fault_cnt:2125 -[UP] flip: 1600, stem: 1684, fault:7258. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2151 -[UP] flip: 6499, stem: 1384, fault:7239. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2147 -[UP] flip: 6556, stem: 2104, fault:7220. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2140 -[UP] flip: 1969, stem: 2524, fault:7220. flip_cnt: 3, stem_cnt: 1484, fault_cnt:2137 -[UP] flip: 6316, stem: 2264, fault:7201. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2134 -[UP] flip: 6730, stem: 2164, fault:7163. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2132 -[UP] flip: 6054, stem: 1904, fault:7163. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2130 -[UP] flip: 2802, stem: 1905, fault:7163. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2128 -[UP] flip: 1515, stem: 2106, fault:7144. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2124 -[UP] flip: 1604, stem: 2346, fault:7144. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2125 -[UP] flip: 3928, stem: 2006, fault:7182. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2131 -[UP] flip: 6796, stem: 2806, fault:7144. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2126 -[UP] flip: 1105, stem: 2707, fault:7144. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2123 -[UP] flip: 0, stem: 2847, fault:7144. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2123 -[UP] flip: 3667, stem: 2527, fault:7144. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2121 -[UP] flip: 4323, stem: 3107, fault:7144. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2117 -[UP] flip: 1406, stem: 3748, fault:7144. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2116 -[UP] flip: 3241, stem: 3848, fault:7144. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2113 -[UP] flip: 0, stem: 4308, fault:7144. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2111 -[UP] flip: 5601, stem: 4508, fault:7106. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2107 -[UP] flip: 5070, stem: 4668, fault:7106. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2101 -[UP] flip: 5941, stem: 4228, fault:7106. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2091 -[UP] flip: 0, stem: 4148, fault:7106. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2091 -[UP] flip: 0, stem: 3868, fault:7106. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2091 -[UP] flip: 0, stem: 4248, fault:7106. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2091 -[UP] flip: 0, stem: 4649, fault:7106. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2091 -[UP] flip: 6039, stem: 5129, fault:7087. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2088 -[UP] flip: 0, stem: 5067, fault:7087. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2088 -[UP] flip: 2558, stem: 4887, fault:7106. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2086 -[UP] flip: 3420, stem: 4987, fault:7106. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2092 -[UP] flip: 2898, stem: 4967, fault:7087. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2090 -[UP] flip: 1261, stem: 4608, fault:7049. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2080 -[UP] flip: 4721, stem: 4728, fault:7049. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2076 -[UP] flip: 0, stem: 3888, fault:7049. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2076 -[UP] flip: 0, stem: 3849, fault:7049. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2076 -[UP] flip: 0, stem: 4569, fault:7049. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2076 -[UP] flip: 6667, stem: 3589, fault:7049. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2074 -[UP] flip: 6425, stem: 3069, fault:7049. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2072 -[UP] flip: 6274, stem: 3429, fault:7049. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2070 -[UP] flip: 1244, stem: 4350, fault:7049. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2067 -[UP] flip: 3492, stem: 4230, fault:7049. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2064 -[UP] flip: 2671, stem: 3930, fault:7068. flip_cnt: 4, stem_cnt: 1478, fault_cnt:2061 -[UP] flip: 1215, stem: 4111, fault:7106. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2067 -[UP] flip: 0, stem: 4549, fault:7239. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2120 -[UP] flip: 4609, stem: 5229, fault:7201. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2116 -[UP] flip: 1264, stem: 6070, fault:7201. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2115 -[UP] flip: 1274, stem: 5990, fault:7201. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2112 -[UP] flip: 7415, stem: 5970, fault:7163. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2108 -[UP] flip: 3495, stem: 6250, fault:7144. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2105 -[UP] flip: 2319, stem: 5530, fault:7144. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2100 -[UP] flip: 3218, stem: 5290, fault:7144. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2100 -[UP] flip: 4101, stem: 5150, fault:7106. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2097 -[UP] flip: 3397, stem: 3670, fault:7068. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2091 -[UP] flip: 2225, stem: 3850, fault:7049. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2086 -[UP] flip: 1575, stem: 4231, fault:7049. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2083 -[UP] flip: 4713, stem: 5171, fault:7049. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2084 -[UP] flip: 0, stem: 4651, fault:7144. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2136 -[UP] flip: 2587, stem: 4372, fault:7144. flip_cnt: 4, stem_cnt: 1476, fault_cnt:2134 -[UP] flip: 1266, stem: 4049, fault:7011. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2106 -[UP] flip: 1319, stem: 4549, fault:7163. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2130 -[UP] flip: 3301, stem: 5069, fault:7144. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2128 -[UP] flip: 1458, stem: 5390, fault:7125. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2127 -[UP] flip: 3516, stem: 5630, fault:7125. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2124 -[UP] flip: 6112, stem: 5450, fault:6973. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2095 -[UP] flip: 7806, stem: 5910, fault:6954. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2091 -[UP] flip: 3404, stem: 6390, fault:6954. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2089 -[UP] flip: 1395, stem: 6811, fault:6954. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2088 -[UP] flip: 2013, stem: 6971, fault:6954. flip_cnt: 3, stem_cnt: 1477, fault_cnt:2085 -[UP] flip: 4145, stem: 7211, fault:6954. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2084 -[UP] flip: 3405, stem: 6311, fault:6954. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2082 -[UP] flip: 1620, stem: 6611, fault:6916. flip_cnt: 3, stem_cnt: 1477, fault_cnt:2077 -[UP] flip: 1391, stem: 6352, fault:6897. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2074 -[UP] flip: 1447, stem: 6112, fault:6897. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2073 -[UP] flip: 0, stem: 6172, fault:6897. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2071 -[UP] flip: 1587, stem: 6713, fault:6878. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2068 -[UP] flip: 3523, stem: 7553, fault:6878. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2066 -[UP] flip: 8124, stem: 8213, fault:6612. flip_cnt: 7, stem_cnt: 1475, fault_cnt:1964 -[UP] flip: 0, stem: 7953, fault:6612. flip_cnt: 0, stem_cnt: 1475, fault_cnt:1964 -[UP] flip: 1559, stem: 7934, fault:6612. flip_cnt: 2, stem_cnt: 1474, fault_cnt:1961 -[UP] flip: 7690, stem: 8195, fault:6555. flip_cnt: 7, stem_cnt: 1473, fault_cnt:1957 -[UP] flip: 0, stem: 8474, fault:6555. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1957 -[UP] flip: 0, stem: 8154, fault:6555. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1957 -[UP] flip: 0, stem: 8554, fault:6555. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1957 -[UP] flip: 7748, stem: 9234, fault:6555. flip_cnt: 7, stem_cnt: 1474, fault_cnt:1953 -[UP] flip: 5278, stem: 8435, fault:6555. flip_cnt: 7, stem_cnt: 1473, fault_cnt:1949 -[UP] flip: 5255, stem: 8796, fault:6517. flip_cnt: 7, stem_cnt: 1472, fault_cnt:1943 -[UP] flip: 0, stem: 8757, fault:6517. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1940 -[UP] flip: 0, stem: 8158, fault:6517. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1937 -[UP] flip: 6598, stem: 7718, fault:6517. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1935 -[UP] flip: 0, stem: 7858, fault:6517. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1935 -[UP] flip: 0, stem: 8299, fault:6517. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1935 -[UP] flip: 5695, stem: 7776, fault:6422. flip_cnt: 4, stem_cnt: 1472, fault_cnt:1919 -[UP] flip: 0, stem: 8076, fault:6422. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1920 -[UP] flip: 0, stem: 10737, fault:6422. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1920 -[UP] flip: 0, stem: 10598, fault:6422. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1920 -[UP] flip: 0, stem: 8297, fault:6422. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1920 -[UP] flip: 0, stem: 8797, fault:6422. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1920 -[UP] flip: 3395, stem: 7555, fault:6422. flip_cnt: 4, stem_cnt: 1473, fault_cnt:1923 -[UP] flip: 1191, stem: 7836, fault:6422. flip_cnt: 2, stem_cnt: 1472, fault_cnt:1926 -[UP] flip: 0, stem: 7596, fault:6422. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1924 -[UP] flip: 0, stem: 8016, fault:6422. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1924 -[UP] flip: 0, stem: 5234, fault:6422. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1924 -[UP] flip: 0, stem: 6415, fault:6422. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1924 -[UP] flip: 0, stem: 6355, fault:6422. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1924 -[UP] flip: 0, stem: 6034, fault:6422. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1924 -[UP] flip: 8130, stem: 5994, fault:6422. flip_cnt: 7, stem_cnt: 1474, fault_cnt:1920 -[UP] flip: 6314, stem: 5554, fault:6422. flip_cnt: 5, stem_cnt: 1474, fault_cnt:1918 -[UP] flip: 1520, stem: 5454, fault:6422. flip_cnt: 2, stem_cnt: 1474, fault_cnt:1917 -[UP] flip: 0, stem: 5634, fault:6422. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1915 -[UP] flip: 3515, stem: 5414, fault:6403. flip_cnt: 5, stem_cnt: 1474, fault_cnt:1913 -[UP] flip: 0, stem: 5834, fault:6403. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1913 -[UP] flip: 6784, stem: 5554, fault:6403. flip_cnt: 5, stem_cnt: 1474, fault_cnt:1911 -[UP] flip: 0, stem: 5174, fault:6403. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1911 -[UP] flip: 0, stem: 5895, fault:6403. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1911 -[UP] flip: 0, stem: 6336, fault:6403. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1911 -[UP] flip: 5405, stem: 6296, fault:6403. flip_cnt: 7, stem_cnt: 1472, fault_cnt:1912 -[UP] flip: 3893, stem: 5936, fault:6403. flip_cnt: 5, stem_cnt: 1472, fault_cnt:1913 -[UP] flip: 0, stem: 6516, fault:6403. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1908 -[UP] flip: 0, stem: 7056, fault:6403. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1908 -[UP] flip: 0, stem: 6876, fault:6403. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1908 -[UP] flip: 0, stem: 6634, fault:6403. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1908 -[UP] flip: 2255, stem: 6394, fault:6403. flip_cnt: 3, stem_cnt: 1474, fault_cnt:1909 -[UP] flip: 5348, stem: 5694, fault:6460. flip_cnt: 7, stem_cnt: 1474, fault_cnt:1926 -[UP] flip: 0, stem: 5415, fault:6460. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1926 -[UP] flip: 0, stem: 6355, fault:6460. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1926 -[UP] flip: 1489, stem: 6576, fault:6403. flip_cnt: 2, stem_cnt: 1472, fault_cnt:1923 -[UP] flip: 6081, stem: 7076, fault:6403. flip_cnt: 7, stem_cnt: 1472, fault_cnt:1919 -[UP] flip: 1373, stem: 6417, fault:6384. flip_cnt: 2, stem_cnt: 1471, fault_cnt:1914 -[UP] flip: 3685, stem: 6697, fault:6384. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1912 -[UP] flip: 0, stem: 6636, fault:6384. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1912 -[UP] flip: 0, stem: 6896, fault:6384. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1912 -[UP] flip: 7215, stem: 7016, fault:6384. flip_cnt: 5, stem_cnt: 1472, fault_cnt:1910 -[UP] flip: 0, stem: 7196, fault:6384. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1910 -[UP] flip: 0, stem: 6616, fault:6384. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1910 -[UP] flip: 0, stem: 5796, fault:6384. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1910 -[UP] flip: 2850, stem: 5813, fault:6764. flip_cnt: 4, stem_cnt: 1475, fault_cnt:2030 -[UP] flip: 1389, stem: 5474, fault:6802. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2032 -[UP] flip: 0, stem: 6114, fault:6802. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2032 -[UP] flip: 1670, stem: 6034, fault:6802. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2031 -[UP] flip: 5270, stem: 6174, fault:6783. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2030 -[UP] flip: 0, stem: 7274, fault:7049. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2078 -[UP] flip: 8301, stem: 7494, fault:7049. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2074 -[UP] flip: 4280, stem: 7594, fault:7049. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2075 -[UP] flip: 0, stem: 7855, fault:7049. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2075 -[UP] flip: 6264, stem: 7375, fault:7049. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2071 -[UP] flip: 0, stem: 7595, fault:6992. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2062 -[UP] flip: 0, stem: 8375, fault:6992. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2062 -[UP] flip: 5725, stem: 8195, fault:6992. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2058 -[UP] flip: 3842, stem: 8035, fault:6992. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2056 -[UP] flip: 0, stem: 8275, fault:6992. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2056 -[UP] flip: 5800, stem: 7513, fault:6973. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2051 -[UP] flip: 4763, stem: 7433, fault:6954. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2045 -[UP] flip: 3143, stem: 6733, fault:6631. flip_cnt: 4, stem_cnt: 1475, fault_cnt:1978 -[UP] flip: 0, stem: 5893, fault:6783. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2006 -[UP] flip: 1581, stem: 5994, fault:6783. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2005 -[UP] flip: 1577, stem: 6193, fault:6802. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2006 -[UP] flip: 5593, stem: 4973, fault:6783. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2002 -[UP] flip: 3576, stem: 4433, fault:6783. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2000 -[UP] flip: 4351, stem: 4573, fault:6707. flip_cnt: 5, stem_cnt: 1475, fault_cnt:1990 -[UP] flip: 0, stem: 5373, fault:6707. flip_cnt: 0, stem_cnt: 1475, fault_cnt:1990 -[UP] flip: 1413, stem: 6214, fault:6688. flip_cnt: 2, stem_cnt: 1474, fault_cnt:1989 -[UP] flip: 1455, stem: 5794, fault:6688. flip_cnt: 2, stem_cnt: 1474, fault_cnt:1986 -[UP] flip: 3905, stem: 5594, fault:6688. flip_cnt: 5, stem_cnt: 1474, fault_cnt:1984 -[UP] flip: 0, stem: 6734, fault:6631. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1970 -[UP] flip: 0, stem: 7234, fault:6631. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1970 -[UP] flip: 0, stem: 7634, fault:6631. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1970 -[UP] flip: 0, stem: 7134, fault:6631. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1970 -[UP] flip: 0, stem: 7134, fault:6631. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1970 -[UP] flip: 1799, stem: 7375, fault:6631. flip_cnt: 2, stem_cnt: 1473, fault_cnt:1969 -[UP] flip: 0, stem: 7715, fault:6631. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1969 -[UP] flip: 0, stem: 7575, fault:6631. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1969 -[UP] flip: 0, stem: 7655, fault:6631. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1969 -[UP] flip: 6613, stem: 7795, fault:6612. flip_cnt: 5, stem_cnt: 1473, fault_cnt:1967 -[UP] flip: 0, stem: 8996, fault:6612. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1965 -[UP] flip: 6495, stem: 8696, fault:6593. flip_cnt: 5, stem_cnt: 1472, fault_cnt:1962 -[UP] flip: 2791, stem: 7358, fault:6593. flip_cnt: 4, stem_cnt: 1470, fault_cnt:1960 -[UP] flip: 1589, stem: 7459, fault:6574. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1954 -[UP] flip: 1676, stem: 6918, fault:6574. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1955 -[UP] flip: 3414, stem: 5836, fault:6935. flip_cnt: 4, stem_cnt: 1472, fault_cnt:2031 -[UP] flip: 1404, stem: 7056, fault:6935. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2047 -[UP] flip: 4906, stem: 6636, fault:6935. flip_cnt: 7, stem_cnt: 1472, fault_cnt:2043 -[UP] flip: 5193, stem: 6356, fault:6916. flip_cnt: 7, stem_cnt: 1472, fault_cnt:2039 -[UP] flip: 0, stem: 5895, fault:6916. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2036 -[UP] flip: 3696, stem: 6475, fault:6916. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2034 -[UP] flip: 0, stem: 6675, fault:6916. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2034 -[UP] flip: 1544, stem: 6736, fault:6897. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2031 -[UP] flip: 0, stem: 7676, fault:6897. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2031 -[UP] flip: 2782, stem: 7276, fault:6916. flip_cnt: 4, stem_cnt: 1472, fault_cnt:2029 -[UP] flip: 8388, stem: 7317, fault:6536. flip_cnt: 7, stem_cnt: 1471, fault_cnt:1958 -[UP] flip: 0, stem: 5677, fault:6536. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1958 -[UP] flip: 0, stem: 5737, fault:6536. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1958 -[UP] flip: 3705, stem: 5557, fault:6536. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1956 -[UP] flip: 0, stem: 5077, fault:6517. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1954 -[UP] flip: 0, stem: 5277, fault:6517. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1954 -[UP] flip: 1353, stem: 5798, fault:6517. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1951 -[UP] flip: 0, stem: 5960, fault:6517. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1951 -[UP] flip: 0, stem: 6180, fault:6517. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1951 -[UP] flip: 0, stem: 8981, fault:6517. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1951 -[UP] flip: 6850, stem: 7439, fault:6517. flip_cnt: 5, stem_cnt: 1469, fault_cnt:1955 -[UP] flip: 8089, stem: 7540, fault:6517. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1942 -[UP] flip: 5253, stem: 7940, fault:6460. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1938 -[UP] flip: 1544, stem: 7219, fault:6422. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1937 -[UP] flip: 0, stem: 7237, fault:6802. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2025 -[UP] flip: 1878, stem: 7077, fault:6783. flip_cnt: 2, stem_cnt: 1471, fault_cnt:2024 -[UP] flip: 0, stem: 7117, fault:6783. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2024 -[UP] flip: 8669, stem: 6897, fault:6764. flip_cnt: 7, stem_cnt: 1471, fault_cnt:2020 -[UP] flip: 7005, stem: 7317, fault:6745. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2018 -[UP] flip: 1754, stem: 6838, fault:6745. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2015 -[UP] flip: 1654, stem: 7157, fault:6764. flip_cnt: 2, stem_cnt: 1471, fault_cnt:2018 -[UP] flip: 3886, stem: 7497, fault:6916. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2038 -[UP] flip: 0, stem: 7777, fault:6897. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2034 -[UP] flip: 5574, stem: 5896, fault:6878. flip_cnt: 7, stem_cnt: 1472, fault_cnt:2030 -[UP] flip: 0, stem: 5556, fault:6878. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2030 -[UP] flip: 1611, stem: 5676, fault:6878. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2031 -[UP] flip: 0, stem: 5737, fault:6916. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2045 -[UP] flip: 6851, stem: 6138, fault:6992. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2060 -[UP] flip: 1548, stem: 5857, fault:7011. flip_cnt: 2, stem_cnt: 1471, fault_cnt:2061 -[UP] flip: 1535, stem: 6138, fault:7068. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2087 -[UP] flip: 0, stem: 6898, fault:7068. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2087 -[UP] flip: 3211, stem: 6158, fault:7011. flip_cnt: 4, stem_cnt: 1470, fault_cnt:2085 -[UP] flip: 0, stem: 6318, fault:7011. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2085 -[UP] flip: 6904, stem: 5258, fault:7011. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2081 -[UP] flip: 1739, stem: 5239, fault:7011. flip_cnt: 2, stem_cnt: 1469, fault_cnt:2078 -[UP] flip: 0, stem: 6219, fault:7011. flip_cnt: 0, stem_cnt: 1469, fault_cnt:2078 -[UP] flip: 4325, stem: 6639, fault:6992. flip_cnt: 5, stem_cnt: 1469, fault_cnt:2076 -[UP] flip: 2300, stem: 6679, fault:6992. flip_cnt: 3, stem_cnt: 1469, fault_cnt:2075 -[UP] flip: 0, stem: 6839, fault:6992. flip_cnt: 0, stem_cnt: 1469, fault_cnt:2075 -[UP] flip: 4524, stem: 7859, fault:6973. flip_cnt: 5, stem_cnt: 1469, fault_cnt:2073 -[UP] flip: 4060, stem: 7599, fault:6954. flip_cnt: 5, stem_cnt: 1469, fault_cnt:2065 -[UP] flip: 1695, stem: 7580, fault:6593. flip_cnt: 2, stem_cnt: 1468, fault_cnt:2009 -[UP] flip: 1360, stem: 8121, fault:6574. flip_cnt: 2, stem_cnt: 1467, fault_cnt:2006 -[UP] flip: 8721, stem: 8161, fault:6536. flip_cnt: 7, stem_cnt: 1467, fault_cnt:2002 -[UP] flip: 4279, stem: 7901, fault:6536. flip_cnt: 5, stem_cnt: 1467, fault_cnt:2000 -[UP] flip: 5895, stem: 8021, fault:6498. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1990 -[UP] flip: 5748, stem: 8421, fault:6460. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1986 -[UP] flip: 4443, stem: 7941, fault:6460. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1984 -[UP] flip: 8552, stem: 8801, fault:6441. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1978 -[UP] flip: 936, stem: 10622, fault:6422. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1975 -[UP] flip: 1717, stem: 10183, fault:6403. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1972 -[UP] flip: 3276, stem: 7642, fault:6289. flip_cnt: 4, stem_cnt: 1466, fault_cnt:1901 -[UP] flip: 5343, stem: 8402, fault:6232. flip_cnt: 7, stem_cnt: 1466, fault_cnt:1893 -[UP] flip: 966, stem: 9843, fault:5757. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1754 -[UP] flip: 0, stem: 10523, fault:5757. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1754 -[UP] flip: 0, stem: 10683, fault:5757. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1754 -[UP] flip: 0, stem: 9543, fault:5757. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1754 -[UP] flip: 8395, stem: 8002, fault:5738. flip_cnt: 7, stem_cnt: 1466, fault_cnt:1756 -[UP] flip: 0, stem: 7161, fault:6023. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1852 -[UP] flip: 5786, stem: 6861, fault:6023. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1848 -[UP] flip: 1900, stem: 7040, fault:6460. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1969 -[UP] flip: 1712, stem: 7820, fault:6460. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1968 -[UP] flip: 2372, stem: 8340, fault:6460. flip_cnt: 3, stem_cnt: 1468, fault_cnt:1967 -[UP] flip: 6817, stem: 7920, fault:6460. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1963 -[UP] flip: 1228, stem: 7740, fault:6460. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1960 -[UP] flip: 5139, stem: 8540, fault:6460. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1956 -[UP] flip: 1553, stem: 9061, fault:6080. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1880 -[UP] flip: 4436, stem: 9701, fault:6080. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1878 -[UP] flip: 0, stem: 10442, fault:6080. flip_cnt: 0, stem_cnt: 1466, fault_cnt:1878 -[UP] flip: 0, stem: 11983, fault:6080. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1878 -[UP] flip: 6242, stem: 12623, fault:6080. flip_cnt: 7, stem_cnt: 1465, fault_cnt:1874 -[UP] flip: 8624, stem: 12823, fault:6061. flip_cnt: 7, stem_cnt: 1465, fault_cnt:1858 -[UP] flip: 6945, stem: 10941, fault:6061. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1860 -[UP] flip: 0, stem: 11221, fault:6441. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1947 -[UP] flip: 1571, stem: 11041, fault:6422. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1944 -[UP] flip: 4410, stem: 11341, fault:6422. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1941 -[UP] flip: 4572, stem: 11121, fault:6422. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1940 -[UP] flip: 2843, stem: 11442, fault:6422. flip_cnt: 4, stem_cnt: 1466, fault_cnt:1938 -[UP] flip: 5674, stem: 9761, fault:6422. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1943 -[UP] flip: 1231, stem: 9959, fault:6099. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1879 -[UP] flip: 3387, stem: 10062, fault:6099. flip_cnt: 4, stem_cnt: 1466, fault_cnt:1885 -[UP] flip: 7445, stem: 10322, fault:6099. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1883 -[UP] flip: 4305, stem: 10382, fault:6080. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1881 -[UP] flip: 0, stem: 10702, fault:6042. flip_cnt: 0, stem_cnt: 1466, fault_cnt:1859 -[UP] flip: 8660, stem: 11502, fault:6023. flip_cnt: 7, stem_cnt: 1466, fault_cnt:1855 -[UP] flip: 0, stem: 8699, fault:6042. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1869 -[UP] flip: 0, stem: 7759, fault:6042. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1869 -[UP] flip: 0, stem: 7679, fault:6042. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1869 -[UP] flip: 7463, stem: 7158, fault:6042. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1871 -[UP] flip: 3944, stem: 7438, fault:6536. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1982 -[UP] flip: 6659, stem: 7138, fault:6536. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1975 -[UP] flip: 7173, stem: 7458, fault:6536. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1972 -[UP] flip: 4434, stem: 7618, fault:6536. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1970 -[UP] flip: 4459, stem: 8018, fault:6517. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1966 -[UP] flip: 1245, stem: 7359, fault:6498. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1963 -[UP] flip: 2882, stem: 5778, fault:6517. flip_cnt: 3, stem_cnt: 1470, fault_cnt:2011 -[UP] flip: 3805, stem: 5997, fault:6498. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2009 -[UP] flip: 3175, stem: 5398, fault:6498. flip_cnt: 4, stem_cnt: 1470, fault_cnt:2007 -[UP] flip: 1124, stem: 4499, fault:6403. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1998 -[UP] flip: 6261, stem: 5320, fault:6403. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1994 -[UP] flip: 0, stem: 6180, fault:6403. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1986 -[UP] flip: 1608, stem: 6780, fault:6403. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1983 -[UP] flip: 4469, stem: 6078, fault:6403. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1986 -[UP] flip: 1890, stem: 6298, fault:6612. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2085 -[UP] flip: 1715, stem: 6179, fault:6593. flip_cnt: 2, stem_cnt: 1469, fault_cnt:2082 -[UP] flip: 2860, stem: 5720, fault:6593. flip_cnt: 4, stem_cnt: 1468, fault_cnt:2080 -[UP] flip: 3222, stem: 6060, fault:6574. flip_cnt: 4, stem_cnt: 1468, fault_cnt:2053 -[UP] flip: 5473, stem: 6960, fault:6669. flip_cnt: 7, stem_cnt: 1468, fault_cnt:2063 -[UP] flip: 0, stem: 7000, fault:6669. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2051 -[UP] flip: 9036, stem: 6699, fault:6593. flip_cnt: 7, stem_cnt: 1469, fault_cnt:2043 -[UP] flip: 0, stem: 7459, fault:6593. flip_cnt: 0, stem_cnt: 1469, fault_cnt:2062 -[UP] flip: 2650, stem: 7479, fault:6593. flip_cnt: 3, stem_cnt: 1469, fault_cnt:2061 -[UP] flip: 0, stem: 6578, fault:6593. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2049 -[UP] flip: 0, stem: 6518, fault:6593. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2045 -[UP] flip: 0, stem: 5998, fault:6593. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2045 -[UP] flip: 7633, stem: 4578, fault:6593. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2057 -[UP] flip: 7079, stem: 4778, fault:6593. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2055 -[UP] flip: 4505, stem: 4958, fault:6593. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2052 -[UP] flip: 0, stem: 5118, fault:6498. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2004 -[UP] flip: 0, stem: 6098, fault:6498. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2004 -[UP] flip: 4567, stem: 5396, fault:6517. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2007 -[UP] flip: 0, stem: 6336, fault:6555. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2024 -[UP] flip: 7238, stem: 6936, fault:6555. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2022 -[UP] flip: 4518, stem: 6355, fault:6517. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2019 -[UP] flip: 5614, stem: 6595, fault:6441. flip_cnt: 7, stem_cnt: 1473, fault_cnt:1985 -[UP] flip: 0, stem: 5976, fault:6441. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1984 -[UP] flip: 1427, stem: 6397, fault:6441. flip_cnt: 2, stem_cnt: 1471, fault_cnt:1981 -[UP] flip: 2895, stem: 7757, fault:6441. flip_cnt: 4, stem_cnt: 1471, fault_cnt:1979 -[UP] flip: 4295, stem: 7357, fault:6422. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1973 -[UP] flip: 1926, stem: 7298, fault:6422. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1970 -[UP] flip: 1514, stem: 6878, fault:6422. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1967 -[UP] flip: 7111, stem: 6818, fault:6422. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1965 -[UP] flip: 4718, stem: 6738, fault:6422. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1966 -[UP] flip: 6041, stem: 7518, fault:6422. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1960 -[UP] flip: 1822, stem: 7577, fault:5548. flip_cnt: 2, stem_cnt: 1471, fault_cnt:1743 -[UP] flip: 6811, stem: 7497, fault:5548. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1741 -[UP] flip: 0, stem: 7017, fault:5548. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1741 -[UP] flip: 2878, stem: 6558, fault:5719. flip_cnt: 4, stem_cnt: 1470, fault_cnt:1824 -[UP] flip: 5652, stem: 7698, fault:5719. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1819 -[UP] flip: 4542, stem: 8337, fault:5719. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1824 -[UP] flip: 0, stem: 9017, fault:5719. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1818 -[UP] flip: 2668, stem: 8618, fault:5719. flip_cnt: 3, stem_cnt: 1470, fault_cnt:1815 -[UP] flip: 2286, stem: 8798, fault:5719. flip_cnt: 3, stem_cnt: 1470, fault_cnt:1814 -[UP] flip: 4549, stem: 7056, fault:5719. flip_cnt: 5, stem_cnt: 1472, fault_cnt:1812 -[UP] flip: 4511, stem: 6617, fault:6270. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1893 -[UP] flip: 2925, stem: 6636, fault:6232. flip_cnt: 4, stem_cnt: 1472, fault_cnt:1897 -[UP] flip: 1394, stem: 7236, fault:6251. flip_cnt: 2, stem_cnt: 1472, fault_cnt:1898 -[UP] flip: 950, stem: 7236, fault:6479. flip_cnt: 2, stem_cnt: 1472, fault_cnt:1960 -[UP] flip: 5744, stem: 6916, fault:6460. flip_cnt: 7, stem_cnt: 1472, fault_cnt:1956 -[UP] flip: 1645, stem: 5675, fault:6460. flip_cnt: 2, stem_cnt: 1473, fault_cnt:1953 -[UP] flip: 2936, stem: 4794, fault:6479. flip_cnt: 4, stem_cnt: 1474, fault_cnt:1954 -[UP] flip: 6063, stem: 5453, fault:7068. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2095 -[UP] flip: 1464, stem: 4851, fault:7011. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2087 -[UP] flip: 4400, stem: 5031, fault:7011. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2085 -[UP] flip: 3485, stem: 4872, fault:6992. flip_cnt: 4, stem_cnt: 1476, fault_cnt:2083 -[UP] flip: 4556, stem: 3991, fault:7030. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2086 -[UP] flip: 2946, stem: 3992, fault:7106. flip_cnt: 4, stem_cnt: 1476, fault_cnt:2094 -[UP] flip: 6156, stem: 3992, fault:7201. flip_cnt: 7, stem_cnt: 1476, fault_cnt:2104 -[UP] flip: 1271, stem: 3953, fault:7182. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2101 -[UP] flip: 5555, stem: 3293, fault:7163. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2097 -[UP] flip: 0, stem: 3732, fault:6973. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2053 -[UP] flip: 4574, stem: 3652, fault:6973. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2050 -[UP] flip: 5673, stem: 3233, fault:6764. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2003 -[UP] flip: 0, stem: 3533, fault:6764. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2003 -[UP] flip: 0, stem: 2553, fault:6764. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2003 -[UP] flip: 6344, stem: 3033, fault:6726. flip_cnt: 7, stem_cnt: 1475, fault_cnt:1999 -[UP] flip: 4248, stem: 2593, fault:6289. flip_cnt: 5, stem_cnt: 1475, fault_cnt:1898 -[UP] flip: 4409, stem: 2511, fault:6289. flip_cnt: 5, stem_cnt: 1477, fault_cnt:1902 -[UP] flip: 1852, stem: 2472, fault:6764. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2018 -[UP] flip: 0, stem: 2191, fault:6840. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2044 -[UP] flip: 0, stem: 3031, fault:6840. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2044 -[UP] flip: 0, stem: 2171, fault:6840. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2044 -[UP] flip: 0, stem: 2671, fault:6840. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2044 -[UP] flip: 3453, stem: 2832, fault:6840. flip_cnt: 4, stem_cnt: 1476, fault_cnt:2042 -[UP] flip: 4619, stem: 2672, fault:6840. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2037 -[UP] flip: 1144, stem: 2651, fault:6840. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2036 -[UP] flip: 1726, stem: 2411, fault:6840. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2035 -[UP] flip: 2921, stem: 2109, fault:6840. flip_cnt: 4, stem_cnt: 1479, fault_cnt:2038 -[UP] flip: 4624, stem: 1427, fault:7087. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2125 -[UP] flip: 4502, stem: 2147, fault:7220. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2143 -[UP] flip: 2262, stem: 2065, fault:7220. flip_cnt: 3, stem_cnt: 1483, fault_cnt:2144 -[UP] flip: 2938, stem: 2066, fault:7220. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2153 -[UP] flip: 1625, stem: 1786, fault:7163. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2149 -[UP] flip: 2960, stem: 2187, fault:7163. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2147 -[UP] flip: 4630, stem: 2307, fault:7163. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2142 -[UP] flip: 6119, stem: 1305, fault:7258. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2151 -[UP] flip: 2920, stem: 1406, fault:7163. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2143 -[UP] flip: 1656, stem: 1466, fault:7163. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2128 -[UP] flip: 0, stem: 1206, fault:7163. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2128 -[UP] flip: 1809, stem: 1306, fault:7258. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2136 -[UP] flip: 2783, stem: 1466, fault:7258. flip_cnt: 3, stem_cnt: 1482, fault_cnt:2135 -[UP] flip: 4528, stem: 2226, fault:7258. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2133 -[UP] flip: 3051, stem: 2265, fault:7277. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2134 -[UP] flip: 1105, stem: 2525, fault:7277. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2154 -[UP] flip: 4400, stem: 2125, fault:7277. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2150 -[UP] flip: 4592, stem: 1665, fault:7258. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2144 -[UP] flip: 7678, stem: 1807, fault:7182. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2139 -[UP] flip: 7683, stem: 1865, fault:7201. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2140 -[UP] flip: 3648, stem: 4107, fault:7201. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2139 -[UP] flip: 3653, stem: 2065, fault:7163. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2134 -[UP] flip: 0, stem: 3146, fault:7220. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2142 -[UP] flip: 7503, stem: 3167, fault:7220. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2140 -[UP] flip: 1357, stem: 4608, fault:7125. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2129 -[UP] flip: 3798, stem: 4848, fault:7125. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2126 -[UP] flip: 8874, stem: 4768, fault:7258. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2143 -[UP] flip: 1363, stem: 4067, fault:7163. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2136 -[UP] flip: 3809, stem: 3346, fault:7239. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2145 -[UP] flip: 3813, stem: 1863, fault:7372. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2161 -[UP] flip: 5647, stem: 3125, fault:7372. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2159 -[UP] flip: 4053, stem: 1161, fault:7429. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2170 -[UP] flip: 7139, stem: 2263, fault:7448. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2172 -[UP] flip: 7144, stem: 1201, fault:7467. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2161 -[UP] flip: 7692, stem: 3423, fault:7448. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2172 -[UP] flip: 7697, stem: 1241, fault:7334. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2167 -[UP] flip: 3342, stem: 2504, fault:7467. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2172 -[UP] flip: 3346, stem: 1281, fault:7467. flip_cnt: 4, stem_cnt: 1487, fault_cnt:2172 -[UP] flip: 6846, stem: 1723, fault:7467. flip_cnt: 4, stem_cnt: 1485, fault_cnt:2173 -[UP] flip: 6849, stem: 1321, fault:7467. flip_cnt: 4, stem_cnt: 1487, fault_cnt:2175 -[UP] flip: 6051, stem: 2823, fault:7467. flip_cnt: 7, stem_cnt: 1485, fault_cnt:2171 -[UP] flip: 4431, stem: 1361, fault:7467. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2171 -[UP] flip: 5834, stem: 3403, fault:7467. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2172 -[UP] flip: 5839, stem: 1401, fault:7467. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2168 -[UP] flip: 8228, stem: 3243, fault:7467. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2173 -[UP] flip: 8233, stem: 1441, fault:7467. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2171 -[UP] flip: 4383, stem: 2763, fault:7467. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2172 -[UP] flip: 4387, stem: 1481, fault:7467. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2173 -[UP] flip: 6730, stem: 2863, fault:7429. flip_cnt: 7, stem_cnt: 1485, fault_cnt:2171 -[UP] flip: 8300, stem: 2983, fault:7429. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2167 -[UP] flip: 1273, stem: 3764, fault:7410. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2164 -[UP] flip: 0, stem: 3664, fault:7410. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2164 -[UP] flip: 0, stem: 3824, fault:7410. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2164 -[UP] flip: 1274, stem: 1601, fault:7429. flip_cnt: 2, stem_cnt: 1487, fault_cnt:2167 -[UP] flip: 9644, stem: 3263, fault:7467. flip_cnt: 7, stem_cnt: 1485, fault_cnt:2171 -[UP] flip: 6785, stem: 1701, fault:7467. flip_cnt: 4, stem_cnt: 1487, fault_cnt:2172 -[UP] flip: 7989, stem: 2023, fault:7467. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2173 -[UP] flip: 1650, stem: 3144, fault:7410. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2164 -[UP] flip: 5034, stem: 3104, fault:7391. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2162 -[UP] flip: 1583, stem: 4545, fault:7372. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2153 -[UP] flip: 6559, stem: 4425, fault:7334. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2149 -[UP] flip: 0, stem: 4805, fault:7334. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2149 -[UP] flip: 7756, stem: 4685, fault:7334. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2147 -[UP] flip: 3483, stem: 5025, fault:7277. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2145 -[UP] flip: 9450, stem: 4505, fault:7258. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2153 -[UP] flip: 4189, stem: 4145, fault:7220. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2150 -[UP] flip: 1968, stem: 4104, fault:7220. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2151 -[UP] flip: 8015, stem: 4064, fault:7220. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2160 -[UP] flip: 3796, stem: 5225, fault:7220. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2156 -[UP] flip: 6641, stem: 5225, fault:7220. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2149 -[UP] flip: 1880, stem: 6206, fault:7220. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2142 -[UP] flip: 1972, stem: 6846, fault:7220. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2141 -[UP] flip: 9285, stem: 6986, fault:7220. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2135 -[UP] flip: 4743, stem: 6466, fault:7220. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2133 -[UP] flip: 0, stem: 6506, fault:7220. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2130 -[UP] flip: 7005, stem: 6386, fault:7220. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2126 -[UP] flip: 0, stem: 5846, fault:7201. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2120 -[UP] flip: 0, stem: 6466, fault:7201. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2120 -[UP] flip: 1595, stem: 7426, fault:7220. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2121 -[UP] flip: 1619, stem: 7427, fault:7239. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2137 -[UP] flip: 8127, stem: 7147, fault:7239. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2135 -[UP] flip: 0, stem: 6787, fault:7239. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2135 -[UP] flip: 4244, stem: 5587, fault:7239. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2133 -[UP] flip: 1674, stem: 4705, fault:7277. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2140 -[UP] flip: 1993, stem: 5526, fault:7277. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2139 -[UP] flip: 4753, stem: 5826, fault:7277. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2137 -[UP] flip: 3750, stem: 5806, fault:7277. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2129 -[UP] flip: 6466, stem: 5566, fault:7296. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2140 -[UP] flip: 0, stem: 6126, fault:7296. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2140 -[UP] flip: 1626, stem: 5847, fault:7277. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2137 -[UP] flip: 9324, stem: 5867, fault:7277. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2133 -[UP] flip: 7927, stem: 4947, fault:7353. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2141 -[UP] flip: 9333, stem: 5747, fault:7353. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2137 -[UP] flip: 9395, stem: 5107, fault:7277. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2127 -[UP] flip: 9450, stem: 5047, fault:7258. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2123 -[UP] flip: 3494, stem: 5247, fault:7277. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2121 -[UP] flip: 1804, stem: 5346, fault:7315. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2130 -[UP] flip: 0, stem: 5887, fault:7391. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2142 -[UP] flip: 6220, stem: 5587, fault:7391. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2138 -[UP] flip: 0, stem: 6167, fault:7391. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2138 -[UP] flip: 4533, stem: 6807, fault:7391. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2136 -[UP] flip: 2032, stem: 6746, fault:7391. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2137 -[UP] flip: 6400, stem: 7026, fault:7410. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2145 -[UP] flip: 4230, stem: 6926, fault:7391. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2137 -[UP] flip: 1888, stem: 7987, fault:7391. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2134 -[UP] flip: 7870, stem: 8487, fault:7353. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2130 -[UP] flip: 2034, stem: 7887, fault:7353. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2129 -[UP] flip: 4823, stem: 7747, fault:7353. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2125 -[UP] flip: 2229, stem: 9028, fault:7334. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2122 -[UP] flip: 5957, stem: 7768, fault:7296. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2118 -[UP] flip: 0, stem: 7968, fault:7296. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2118 -[UP] flip: 4830, stem: 6586, fault:7296. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2122 -[UP] flip: 3678, stem: 6846, fault:7467. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2138 -[UP] flip: 4837, stem: 7306, fault:7486. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2142 -[UP] flip: 3490, stem: 7266, fault:7429. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2132 -[UP] flip: 2028, stem: 8410, fault:7429. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2122 -[UP] flip: 0, stem: 8350, fault:7429. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2122 -[UP] flip: 9759, stem: 8230, fault:7410. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2118 -[UP] flip: 929, stem: 9049, fault:7410. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2119 -[UP] flip: 1541, stem: 8068, fault:7410. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2128 -[UP] flip: 1467, stem: 6165, fault:7486. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2149 -[UP] flip: 6246, stem: 5605, fault:7486. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2151 -[UP] flip: 4407, stem: 5285, fault:7486. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2149 -[UP] flip: 0, stem: 5965, fault:7467. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2146 -[UP] flip: 1689, stem: 3926, fault:7467. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2143 -[UP] flip: 0, stem: 4126, fault:7467. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2143 -[UP] flip: 0, stem: 4006, fault:7467. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2143 -[UP] flip: 0, stem: 4866, fault:7467. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2143 -[UP] flip: 9426, stem: 6266, fault:7467. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2139 -[UP] flip: 7928, stem: 6346, fault:7467. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2137 -[UP] flip: 0, stem: 6866, fault:7467. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2137 -[UP] flip: 0, stem: 7906, fault:7467. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2137 -[UP] flip: 0, stem: 7087, fault:7467. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2137 -[UP] flip: 7938, stem: 5805, fault:7467. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2139 -[UP] flip: 6268, stem: 6045, fault:7486. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2145 -[UP] flip: 6524, stem: 6125, fault:7467. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2135 -[UP] flip: 7674, stem: 6705, fault:7467. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2133 -[UP] flip: 1550, stem: 7666, fault:7410. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2130 -[UP] flip: 2122, stem: 7487, fault:7391. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2129 -[UP] flip: 0, stem: 7787, fault:7391. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2129 -[UP] flip: 0, stem: 2726, fault:7391. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2131 -[UP] flip: 0, stem: 3186, fault:7391. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2131 -[UP] flip: 4010, stem: 3326, fault:7391. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2128 -[UP] flip: 0, stem: 4786, fault:7391. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2123 -[UP] flip: 7992, stem: 4406, fault:7391. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2120 -[UP] flip: 1391, stem: 4485, fault:7391. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2121 -[UP] flip: 6314, stem: 3585, fault:7372. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2132 -[UP] flip: 6321, stem: 3625, fault:7448. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2143 -[UP] flip: 0, stem: 3985, fault:7372. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2132 -[UP] flip: 0, stem: 3985, fault:7372. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2132 -[UP] flip: 0, stem: 2785, fault:7372. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2132 -[UP] flip: 7979, stem: 3145, fault:7372. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2130 -[UP] flip: 3641, stem: 2825, fault:7372. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2128 -[UP] flip: 6734, stem: 3005, fault:7391. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2149 -[UP] flip: 7702, stem: 3125, fault:7353. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2145 -[UP] flip: 0, stem: 3765, fault:7353. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2134 -[UP] flip: 4730, stem: 4145, fault:7334. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2130 -[UP] flip: 9289, stem: 4765, fault:7334. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2126 -[UP] flip: 0, stem: 5926, fault:7334. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2126 -[UP] flip: 2340, stem: 6106, fault:7334. flip_cnt: 3, stem_cnt: 1482, fault_cnt:2127 -[UP] flip: 4296, stem: 5206, fault:7334. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2128 -[UP] flip: 0, stem: 4446, fault:7334. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2128 -[UP] flip: 8516, stem: 3426, fault:7315. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2126 -[UP] flip: 4547, stem: 2666, fault:7315. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2124 -[UP] flip: 0, stem: 3587, fault:7315. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2123 -[UP] flip: 5009, stem: 3387, fault:7315. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2124 -[UP] flip: 0, stem: 3527, fault:7315. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2124 -[UP] flip: 0, stem: 1985, fault:7315. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2124 -[UP] flip: 1481, stem: 966, fault:7315. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2121 -[UP] flip: 0, stem: 1306, fault:7315. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2121 -[UP] flip: 4482, stem: 1826, fault:7315. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2119 -[UP] flip: 0, stem: 2246, fault:7296. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2113 -[UP] flip: 1641, stem: 3247, fault:7239. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2110 -[UP] flip: 0, stem: 3827, fault:7239. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2110 -[UP] flip: 0, stem: 4188, fault:7239. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2110 -[UP] flip: 9454, stem: 3688, fault:7182. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2106 -[UP] flip: 0, stem: 3887, fault:7201. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2124 -[UP] flip: 4818, stem: 4167, fault:7163. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2121 -[UP] flip: 1894, stem: 4248, fault:7106. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2114 -[UP] flip: 3355, stem: 3728, fault:7106. flip_cnt: 4, stem_cnt: 1480, fault_cnt:2112 -[UP] flip: 9778, stem: 3668, fault:7049. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2108 -[UP] flip: 2381, stem: 4529, fault:7030. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2107 -[UP] flip: 0, stem: 4609, fault:7030. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2107 -[UP] flip: 8070, stem: 3688, fault:7144. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2145 -[UP] flip: 3719, stem: 4549, fault:7163. flip_cnt: 4, stem_cnt: 1479, fault_cnt:2155 -[UP] flip: 4447, stem: 4929, fault:7144. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2152 -[UP] flip: 1887, stem: 5048, fault:7163. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2153 -[UP] flip: 0, stem: 5148, fault:7182. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2155 -[UP] flip: 2195, stem: 5349, fault:7125. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2152 -[UP] flip: 8086, stem: 6269, fault:7106. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2149 -[UP] flip: 9911, stem: 5850, fault:6992. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2134 -[UP] flip: 3534, stem: 3647, fault:6992. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2132 -[UP] flip: 1948, stem: 4468, fault:6973. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2126 -[UP] flip: 4396, stem: 4648, fault:6954. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2124 -[UP] flip: 1808, stem: 5389, fault:6916. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2111 -[UP] flip: 1432, stem: 4428, fault:6916. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2112 -[UP] flip: 10067, stem: 4748, fault:6916. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2115 -[UP] flip: 0, stem: 4268, fault:6916. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2115 -[UP] flip: 0, stem: 3767, fault:6916. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2115 -[UP] flip: 0, stem: 4447, fault:6916. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2117 -[UP] flip: 9725, stem: 4987, fault:6897. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2113 -[UP] flip: 6657, stem: 4707, fault:6897. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2109 -[UP] flip: 8506, stem: 5807, fault:6897. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2106 -[UP] flip: 0, stem: 6288, fault:6897. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2106 -[UP] flip: 0, stem: 6488, fault:6897. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2106 -[UP] flip: 6174, stem: 6568, fault:6897. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2102 -[UP] flip: 5934, stem: 5728, fault:6878. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2092 -[UP] flip: 0, stem: 6129, fault:6878. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2090 -[UP] flip: 7710, stem: 7009, fault:6878. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2088 -[UP] flip: 4749, stem: 6049, fault:6878. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2086 -[UP] flip: 4408, stem: 7689, fault:6859. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2084 -[UP] flip: 1993, stem: 6310, fault:6840. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2081 -[UP] flip: 8530, stem: 4208, fault:6840. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2083 -[UP] flip: 9723, stem: 4708, fault:6935. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2112 -[UP] flip: 6229, stem: 3988, fault:6954. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2135 -[UP] flip: 5980, stem: 4428, fault:6935. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2121 -[UP] flip: 0, stem: 3608, fault:6935. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2119 -[UP] flip: 1614, stem: 2829, fault:6935. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2118 -[UP] flip: 1910, stem: 2689, fault:6935. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2117 -[UP] flip: 1828, stem: 2469, fault:6935. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2112 -[UP] flip: 0, stem: 3529, fault:6935. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2112 -[UP] flip: 2127, stem: 4350, fault:6935. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2109 -[UP] flip: 8654, stem: 4450, fault:6897. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2106 -[UP] flip: 9752, stem: 4810, fault:6897. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2102 -[UP] flip: 0, stem: 5071, fault:6897. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2093 -[UP] flip: 4393, stem: 4589, fault:6935. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2096 -[UP] flip: 6006, stem: 4589, fault:6897. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2093 -[UP] flip: 3403, stem: 4450, fault:6897. flip_cnt: 4, stem_cnt: 1478, fault_cnt:2091 -[UP] flip: 3862, stem: 4430, fault:6897. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2086 -[UP] flip: 9865, stem: 4690, fault:6897. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2076 -[UP] flip: 0, stem: 3929, fault:6897. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2076 -[UP] flip: 0, stem: 3010, fault:6897. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2076 -[UP] flip: 3862, stem: 2928, fault:6897. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2078 -[UP] flip: 0, stem: 2267, fault:6897. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2096 -[UP] flip: 1914, stem: 1827, fault:6897. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2095 -[UP] flip: 3536, stem: 1705, fault:6897. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2096 -[UP] flip: 3582, stem: 2145, fault:7049. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2138 -[UP] flip: 2887, stem: 2564, fault:7144. flip_cnt: 3, stem_cnt: 1484, fault_cnt:2154 -[UP] flip: 3063, stem: 2704, fault:7144. flip_cnt: 3, stem_cnt: 1484, fault_cnt:2151 -[UP] flip: 6716, stem: 2384, fault:7144. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2147 -[UP] flip: 7915, stem: 3224, fault:7049. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2139 -[UP] flip: 0, stem: 3444, fault:7049. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2139 -[UP] flip: 6482, stem: 2304, fault:7011. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2135 -[UP] flip: 0, stem: 2904, fault:6992. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2128 -[UP] flip: 8149, stem: 3284, fault:6973. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2126 -[UP] flip: 8611, stem: 4384, fault:6973. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2124 -[UP] flip: 3666, stem: 2944, fault:6992. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2122 -[UP] flip: 3744, stem: 2024, fault:7144. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2135 -[UP] flip: 6461, stem: 3764, fault:7182. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2143 -[UP] flip: 1480, stem: 1223, fault:7182. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2142 -[UP] flip: 8341, stem: 1583, fault:7182. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2143 -[UP] flip: 3497, stem: 2103, fault:7201. flip_cnt: 4, stem_cnt: 1485, fault_cnt:2141 -[UP] flip: 4008, stem: 2023, fault:7239. flip_cnt: 4, stem_cnt: 1485, fault_cnt:2147 -[UP] flip: 6915, stem: 1463, fault:7410. flip_cnt: 7, stem_cnt: 1485, fault_cnt:2155 -[UP] flip: 0, stem: 362, fault:7277. flip_cnt: 0, stem_cnt: 1486, fault_cnt:2146 -[UP] flip: 8447, stem: 202, fault:7258. flip_cnt: 5, stem_cnt: 1486, fault_cnt:2144 -[UP] flip: 3633, stem: 442, fault:7239. flip_cnt: 4, stem_cnt: 1486, fault_cnt:2142 -[UP] flip: 5691, stem: 1504, fault:7372. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2155 -[UP] flip: 3404, stem: 522, fault:7372. flip_cnt: 4, stem_cnt: 1486, fault_cnt:2156 -[UP] flip: 0, stem: 1863, fault:7372. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2159 -[UP] flip: 9139, stem: 3825, fault:7391. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2155 -[UP] flip: 1477, stem: 3744, fault:7467. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2158 -[UP] flip: 3991, stem: 3424, fault:7467. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2147 -[UP] flip: 7750, stem: 3643, fault:7467. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2144 -[UP] flip: 0, stem: 3463, fault:7467. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2144 -[UP] flip: 1479, stem: 3643, fault:7467. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2145 -[UP] flip: 1498, stem: 3383, fault:7467. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2154 -[UP] flip: 7760, stem: 1461, fault:7467. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2163 -[UP] flip: 6845, stem: 4223, fault:7467. flip_cnt: 7, stem_cnt: 1485, fault_cnt:2167 -[UP] flip: 8435, stem: 3003, fault:7467. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2163 -[UP] flip: 0, stem: 3903, fault:7467. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2163 -[UP] flip: 1612, stem: 5144, fault:7467. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2160 -[UP] flip: 4523, stem: 3064, fault:7467. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2157 -[UP] flip: 4708, stem: 4524, fault:7467. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2155 -[UP] flip: 1748, stem: 2685, fault:7467. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2146 -[UP] flip: 9867, stem: 4185, fault:7467. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2142 -[UP] flip: 6468, stem: 3205, fault:7467. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2157 -[UP] flip: 8298, stem: 3605, fault:7467. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2154 -[UP] flip: 2094, stem: 3887, fault:7467. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2150 -[UP] flip: 5293, stem: 4347, fault:7467. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2149 -[UP] flip: 9889, stem: 5647, fault:7467. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2145 -[UP] flip: 4602, stem: 5827, fault:7467. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2128 -[UP] flip: 0, stem: 4728, fault:7448. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2122 -[UP] flip: 0, stem: 5188, fault:7448. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2122 -[UP] flip: 10254, stem: 6368, fault:7429. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2118 -[UP] flip: 0, stem: 7188, fault:7429. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2118 -[UP] flip: 1683, stem: 7249, fault:7372. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2115 -[UP] flip: 9776, stem: 7189, fault:7315. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2111 -[UP] flip: 1529, stem: 6328, fault:7315. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2114 -[UP] flip: 3825, stem: 6529, fault:7334. flip_cnt: 4, stem_cnt: 1479, fault_cnt:2138 -[UP] flip: 4557, stem: 7569, fault:7334. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2133 -[UP] flip: 0, stem: 8050, fault:7258. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2127 -[UP] flip: 1643, stem: 7611, fault:7258. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2124 -[UP] flip: 3918, stem: 6549, fault:7277. flip_cnt: 4, stem_cnt: 1479, fault_cnt:2123 -[UP] flip: 4550, stem: 6389, fault:7353. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2127 -[UP] flip: 6488, stem: 7989, fault:7353. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2123 -[UP] flip: 0, stem: 8889, fault:7353. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2117 -[UP] flip: 9826, stem: 9469, fault:7353. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2113 -[UP] flip: 0, stem: 7609, fault:7353. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2113 -[UP] flip: 8067, stem: 9169, fault:7353. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2111 -[UP] flip: 4710, stem: 7429, fault:7334. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2109 -[UP] flip: 4220, stem: 7549, fault:7334. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2107 -[UP] flip: 0, stem: 7369, fault:7258. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2101 -[UP] flip: 0, stem: 6290, fault:7258. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2101 -[UP] flip: 1766, stem: 6671, fault:7258. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2098 -[UP] flip: 4973, stem: 7131, fault:7220. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2095 -[UP] flip: 9896, stem: 7851, fault:7220. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2091 -[UP] flip: 4644, stem: 7991, fault:7220. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2089 -[UP] flip: 0, stem: 8391, fault:7220. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2083 -[UP] flip: 0, stem: 8372, fault:7220. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2083 -[UP] flip: 0, stem: 8412, fault:7220. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2083 -[UP] flip: 0, stem: 8452, fault:7220. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2083 -[UP] flip: 0, stem: 8412, fault:7220. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2083 -[UP] flip: 6587, stem: 8672, fault:7182. flip_cnt: 7, stem_cnt: 1476, fault_cnt:2079 -[UP] flip: 0, stem: 8772, fault:7182. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2079 -[UP] flip: 3668, stem: 7192, fault:7125. flip_cnt: 4, stem_cnt: 1476, fault_cnt:2077 -[UP] flip: 1559, stem: 7873, fault:7125. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2091 -[UP] flip: 6939, stem: 8353, fault:7125. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2087 -[UP] flip: 10135, stem: 8493, fault:7106. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2082 -[UP] flip: 5944, stem: 8633, fault:7106. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2078 -[UP] flip: 4597, stem: 7653, fault:7068. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2074 -[UP] flip: 1563, stem: 8052, fault:7068. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2077 -[UP] flip: 7993, stem: 8572, fault:7068. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2083 -[UP] flip: 0, stem: 8732, fault:7068. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2083 -[UP] flip: 0, stem: 9332, fault:7068. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2083 -[UP] flip: 1989, stem: 9533, fault:7049. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2080 -[UP] flip: 0, stem: 8653, fault:7049. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2080 -[UP] flip: 1770, stem: 8413, fault:7049. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2081 -[UP] flip: 7932, stem: 8073, fault:7201. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2096 -[UP] flip: 9988, stem: 8473, fault:7163. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2092 -[UP] flip: 4543, stem: 8273, fault:7144. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2090 -[UP] flip: 1801, stem: 7714, fault:7125. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2087 -[UP] flip: 10224, stem: 8674, fault:7106. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2083 -[UP] flip: 1622, stem: 9315, fault:7106. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2080 -[UP] flip: 6669, stem: 10095, fault:7068. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2076 -[UP] flip: 1687, stem: 9835, fault:7049. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2075 -[UP] flip: 2112, stem: 9056, fault:7049. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2082 -[UP] flip: 1852, stem: 9377, fault:7030. flip_cnt: 2, stem_cnt: 1471, fault_cnt:2079 -[UP] flip: 0, stem: 11717, fault:7030. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2079 -[UP] flip: 6156, stem: 11997, fault:7030. flip_cnt: 7, stem_cnt: 1471, fault_cnt:2075 -[UP] flip: 2045, stem: 12415, fault:7144. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2102 -[UP] flip: 0, stem: 12656, fault:7144. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2100 -[UP] flip: 1782, stem: 12537, fault:7144. flip_cnt: 2, stem_cnt: 1471, fault_cnt:2099 -[UP] flip: 4697, stem: 9716, fault:7106. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2098 -[UP] flip: 4555, stem: 9334, fault:7106. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2101 -[UP] flip: 0, stem: 10574, fault:7106. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2107 -[UP] flip: 5813, stem: 10634, fault:7106. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2103 -[UP] flip: 4124, stem: 9934, fault:7106. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2101 -[UP] flip: 3006, stem: 10074, fault:6916. flip_cnt: 3, stem_cnt: 1474, fault_cnt:2056 -[UP] flip: 0, stem: 10454, fault:6916. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2056 -[UP] flip: 1548, stem: 9453, fault:6916. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2057 -[UP] flip: 2180, stem: 12174, fault:7087. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2098 -[UP] flip: 8409, stem: 11994, fault:7087. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2095 -[UP] flip: 1644, stem: 12655, fault:7087. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2092 -[UP] flip: 3013, stem: 13195, fault:7087. flip_cnt: 3, stem_cnt: 1473, fault_cnt:2089 -[UP] flip: 8231, stem: 13655, fault:7087. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2087 -[UP] flip: 4096, stem: 14076, fault:7087. flip_cnt: 4, stem_cnt: 1472, fault_cnt:2085 -[UP] flip: 0, stem: 14236, fault:7087. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2080 -[UP] flip: 0, stem: 14335, fault:7087. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2080 -[UP] flip: 9366, stem: 14795, fault:7087. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2076 -[UP] flip: 7045, stem: 14335, fault:7087. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2087 -[UP] flip: 9375, stem: 13976, fault:7087. flip_cnt: 7, stem_cnt: 1472, fault_cnt:2078 -[UP] flip: 6959, stem: 13236, fault:7011. flip_cnt: 7, stem_cnt: 1472, fault_cnt:2063 -[UP] flip: 2027, stem: 12996, fault:7011. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2061 -[UP] flip: 2577, stem: 12276, fault:7011. flip_cnt: 3, stem_cnt: 1472, fault_cnt:2058 -[UP] flip: 10452, stem: 10155, fault:7011. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2054 -[UP] flip: 3627, stem: 11176, fault:7011. flip_cnt: 4, stem_cnt: 1472, fault_cnt:2052 -[UP] flip: 0, stem: 12096, fault:6992. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2051 -[UP] flip: 4880, stem: 11956, fault:6973. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2047 -[UP] flip: 0, stem: 13277, fault:6973. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2047 -[UP] flip: 9652, stem: 13837, fault:6935. flip_cnt: 7, stem_cnt: 1471, fault_cnt:2043 -[UP] flip: 1775, stem: 13398, fault:6935. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2040 -[UP] flip: 4899, stem: 13118, fault:6935. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2038 -[UP] flip: 6458, stem: 12638, fault:6935. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2034 -[UP] flip: 6845, stem: 13118, fault:6935. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2028 -[UP] flip: 0, stem: 14239, fault:6935. flip_cnt: 0, stem_cnt: 1469, fault_cnt:2028 -[UP] flip: 1667, stem: 14079, fault:6916. flip_cnt: 2, stem_cnt: 1469, fault_cnt:2027 -[UP] flip: 0, stem: 15060, fault:6916. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2025 -[UP] flip: 0, stem: 14100, fault:6916. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2025 -[UP] flip: 0, stem: 14601, fault:6916. flip_cnt: 0, stem_cnt: 1467, fault_cnt:2025 -[UP] flip: 3241, stem: 14161, fault:6916. flip_cnt: 4, stem_cnt: 1467, fault_cnt:2017 -[UP] flip: 0, stem: 15101, fault:6916. flip_cnt: 0, stem_cnt: 1467, fault_cnt:2025 -[UP] flip: 2010, stem: 14261, fault:6916. flip_cnt: 2, stem_cnt: 1467, fault_cnt:2024 -[UP] flip: 4221, stem: 8318, fault:6935. flip_cnt: 4, stem_cnt: 1470, fault_cnt:2027 -[UP] flip: 0, stem: 7956, fault:7011. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2043 -[UP] flip: 0, stem: 7417, fault:7011. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2043 -[UP] flip: 4833, stem: 8977, fault:7011. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2041 -[UP] flip: 0, stem: 8915, fault:7011. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2041 -[UP] flip: 9123, stem: 8555, fault:6992. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2039 -[UP] flip: 0, stem: 8535, fault:6992. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2045 -[UP] flip: 0, stem: 8195, fault:6992. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2045 -[UP] flip: 0, stem: 6635, fault:6992. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2045 -[UP] flip: 1027, stem: 7296, fault:6973. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2042 -[UP] flip: 8334, stem: 8016, fault:6973. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2040 -[UP] flip: 0, stem: 8637, fault:7049. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2051 -[UP] flip: 1814, stem: 7838, fault:7049. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2048 -[UP] flip: 6230, stem: 7718, fault:7011. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2044 -[UP] flip: 4892, stem: 7078, fault:7011. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2041 -[UP] flip: 0, stem: 6958, fault:7011. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2041 -[UP] flip: 0, stem: 6776, fault:7011. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2041 -[UP] flip: 3623, stem: 5275, fault:6973. flip_cnt: 4, stem_cnt: 1473, fault_cnt:2040 -[UP] flip: 6813, stem: 4655, fault:6935. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2044 -[UP] flip: 10305, stem: 5055, fault:6916. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2040 -[UP] flip: 1673, stem: 5995, fault:6916. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2039 -[UP] flip: 2190, stem: 6156, fault:6916. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2034 -[UP] flip: 0, stem: 5716, fault:6916. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2034 -[UP] flip: 4001, stem: 5856, fault:6916. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2032 -[UP] flip: 0, stem: 5497, fault:6916. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2032 -[UP] flip: 3777, stem: 5515, fault:6916. flip_cnt: 4, stem_cnt: 1473, fault_cnt:2035 -[UP] flip: 2519, stem: 6396, fault:6954. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2058 -[UP] flip: 2215, stem: 6576, fault:6954. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2059 -[UP] flip: 4605, stem: 7716, fault:6935. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2065 -[UP] flip: 10360, stem: 7796, fault:6935. flip_cnt: 7, stem_cnt: 1472, fault_cnt:2061 -[UP] flip: 0, stem: 8516, fault:6935. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2061 -[UP] flip: 1976, stem: 8797, fault:6935. flip_cnt: 2, stem_cnt: 1471, fault_cnt:2058 -[UP] flip: 0, stem: 9758, fault:6935. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2058 -[UP] flip: 0, stem: 9238, fault:6935. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2058 -[UP] flip: 0, stem: 9938, fault:6935. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2058 -[UP] flip: 0, stem: 10318, fault:6935. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2058 -[UP] flip: 6633, stem: 10278, fault:6935. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2054 -[UP] flip: 0, stem: 8977, fault:6935. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2054 -[UP] flip: 5059, stem: 8697, fault:6935. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2052 -[UP] flip: 10534, stem: 8536, fault:6935. flip_cnt: 7, stem_cnt: 1472, fault_cnt:2042 -[UP] flip: 2523, stem: 7976, fault:6954. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2040 -[UP] flip: 8398, stem: 8956, fault:6973. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2046 -[UP] flip: 977, stem: 8155, fault:6973. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2043 -[UP] flip: 2529, stem: 8295, fault:6954. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2042 -[UP] flip: 3915, stem: 8675, fault:7163. flip_cnt: 4, stem_cnt: 1473, fault_cnt:2058 -[UP] flip: 0, stem: 8435, fault:7201. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2070 -[UP] flip: 8386, stem: 8475, fault:7163. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2067 -[UP] flip: 1967, stem: 8816, fault:7144. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2059 -[UP] flip: 0, stem: 9196, fault:7144. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2059 -[UP] flip: 0, stem: 8656, fault:7144. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2059 -[UP] flip: 0, stem: 9295, fault:7144. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2059 -[UP] flip: 4728, stem: 9195, fault:7125. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2057 -[UP] flip: 5061, stem: 9175, fault:7125. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2055 -[UP] flip: 0, stem: 9096, fault:7125. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2049 -[UP] flip: 10167, stem: 9995, fault:7125. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2049 -[UP] flip: 3684, stem: 9436, fault:7106. flip_cnt: 4, stem_cnt: 1472, fault_cnt:2047 -[UP] flip: 1712, stem: 8855, fault:7125. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2045 -[UP] flip: 4742, stem: 8633, fault:7144. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2059 -[UP] flip: 7018, stem: 7773, fault:7201. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2067 -[UP] flip: 1022, stem: 8414, fault:7182. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2064 -[UP] flip: 2535, stem: 8334, fault:7201. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2065 -[UP] flip: 4581, stem: 9274, fault:7163. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2069 -[UP] flip: 0, stem: 8654, fault:7163. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2040 -[UP] flip: 4617, stem: 8754, fault:7163. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2038 -[UP] flip: 1892, stem: 8554, fault:7182. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2039 -[UP] flip: 4752, stem: 8594, fault:7410. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2062 -[UP] flip: 4685, stem: 7974, fault:7315. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2048 -[UP] flip: 0, stem: 8653, fault:7258. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2082 -[UP] flip: 2169, stem: 8834, fault:7239. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2081 -[UP] flip: 1665, stem: 9575, fault:7239. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2078 -[UP] flip: 3138, stem: 10255, fault:7239. flip_cnt: 4, stem_cnt: 1473, fault_cnt:2075 -[UP] flip: 4942, stem: 9695, fault:7201. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2072 -[UP] flip: 6308, stem: 10355, fault:7201. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2068 -[UP] flip: 10486, stem: 10515, fault:7201. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2062 -[UP] flip: 0, stem: 10494, fault:7201. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2062 -[UP] flip: 0, stem: 12634, fault:7201. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2062 -[UP] flip: 0, stem: 9972, fault:7201. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2062 -[UP] flip: 3090, stem: 10113, fault:7201. flip_cnt: 4, stem_cnt: 1475, fault_cnt:2060 -[UP] flip: 2235, stem: 9614, fault:7201. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2054 -[UP] flip: 4886, stem: 9694, fault:7201. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2052 -[UP] flip: 10502, stem: 9914, fault:7182. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2025 -[UP] flip: 2014, stem: 9995, fault:7125. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2022 -[UP] flip: 0, stem: 10816, fault:7125. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2022 -[UP] flip: 0, stem: 12576, fault:7125. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2022 -[UP] flip: 0, stem: 13596, fault:7125. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2022 -[UP] flip: 0, stem: 12637, fault:7125. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2022 -[UP] flip: 7217, stem: 12014, fault:7163. flip_cnt: 4, stem_cnt: 1474, fault_cnt:2031 -[UP] flip: 0, stem: 8314, fault:7277. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2081 -[UP] flip: 4651, stem: 6152, fault:7296. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2083 -[UP] flip: 4209, stem: 5809, fault:7315. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2093 -[UP] flip: 10675, stem: 6149, fault:7258. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2090 -[UP] flip: 4709, stem: 6109, fault:7220. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2088 -[UP] flip: 3147, stem: 5029, fault:7011. flip_cnt: 4, stem_cnt: 1479, fault_cnt:2076 -[UP] flip: 0, stem: 5129, fault:7011. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2084 -[UP] flip: 0, stem: 4088, fault:7011. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2084 -[UP] flip: 2014, stem: 4909, fault:6992. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2081 -[UP] flip: 9126, stem: 4449, fault:6973. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2079 -[UP] flip: 6050, stem: 4589, fault:6935. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2075 -[UP] flip: 7648, stem: 3728, fault:6973. flip_cnt: 4, stem_cnt: 1480, fault_cnt:2078 -[UP] flip: 0, stem: 4068, fault:7201. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2123 -[UP] flip: 8735, stem: 4788, fault:7201. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2121 -[UP] flip: 3961, stem: 4468, fault:7201. flip_cnt: 4, stem_cnt: 1480, fault_cnt:2121 -[UP] flip: 4644, stem: 4248, fault:7182. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2127 -[UP] flip: 1910, stem: 4209, fault:7144. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2114 -[UP] flip: 4679, stem: 3969, fault:7125. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2112 -[UP] flip: 10800, stem: 4609, fault:7125. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2108 -[UP] flip: 1615, stem: 4669, fault:7106. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2105 -[UP] flip: 0, stem: 5650, fault:7106. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2105 -[UP] flip: 10532, stem: 5870, fault:7087. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2101 -[UP] flip: 6329, stem: 4427, fault:7353. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2129 -[UP] flip: 2021, stem: 3807, fault:7334. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2128 -[UP] flip: 4956, stem: 4967, fault:7144. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2114 -[UP] flip: 2231, stem: 4088, fault:7144. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2111 -[UP] flip: 2579, stem: 4888, fault:7144. flip_cnt: 3, stem_cnt: 1480, fault_cnt:2110 -[UP] flip: 2554, stem: 5009, fault:7125. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2107 -[UP] flip: 10437, stem: 5489, fault:7087. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2103 -[UP] flip: 1051, stem: 5608, fault:7106. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2104 -[UP] flip: 10628, stem: 5788, fault:7239. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2117 -[UP] flip: 1586, stem: 5587, fault:7258. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2118 -[UP] flip: 8718, stem: 5907, fault:7315. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2127 -[UP] flip: 2257, stem: 5847, fault:7315. flip_cnt: 3, stem_cnt: 1481, fault_cnt:2125 -[UP] flip: 3116, stem: 5208, fault:7315. flip_cnt: 4, stem_cnt: 1480, fault_cnt:2131 -[UP] flip: 6203, stem: 5348, fault:7315. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2124 -[UP] flip: 0, stem: 6269, fault:7315. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2109 -[UP] flip: 3148, stem: 3287, fault:7315. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2112 -[UP] flip: 4151, stem: 2747, fault:7334. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2140 -[UP] flip: 7213, stem: 2906, fault:7505. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2154 -[UP] flip: 1588, stem: 1305, fault:7486. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2155 -[UP] flip: 0, stem: 1445, fault:7467. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2153 -[UP] flip: 9561, stem: 1143, fault:7467. flip_cnt: 6, stem_cnt: 1485, fault_cnt:2157 -[UP] flip: 3934, stem: 2425, fault:7448. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2165 -[UP] flip: 8543, stem: 2325, fault:7391. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2160 -[UP] flip: 3592, stem: 2425, fault:7372. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2158 -[UP] flip: 6071, stem: 2605, fault:7372. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2154 -[UP] flip: 0, stem: 2725, fault:7372. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2154 -[UP] flip: 1950, stem: 3846, fault:7372. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2153 -[UP] flip: 0, stem: 3946, fault:7372. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2153 -[UP] flip: 1648, stem: 3305, fault:7391. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2154 -[UP] flip: 0, stem: 2504, fault:7467. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2162 -[UP] flip: 3540, stem: 722, fault:7467. flip_cnt: 4, stem_cnt: 1486, fault_cnt:2165 -[UP] flip: 1291, stem: 2244, fault:7467. flip_cnt: 1, stem_cnt: 1484, fault_cnt:2166 -[UP] flip: 0, stem: 1883, fault:7467. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2172 -[UP] flip: 1292, stem: 441, fault:7467. flip_cnt: 1, stem_cnt: 1487, fault_cnt:2174 -[UP] flip: 0, stem: 4342, fault:7467. flip_cnt: 0, stem_cnt: 1486, fault_cnt:2175 -[UP] flip: 3774, stem: 5804, fault:7448. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2173 -[UP] flip: 3777, stem: 4422, fault:7448. flip_cnt: 5, stem_cnt: 1486, fault_cnt:2171 -[UP] flip: 8453, stem: 7144, fault:7448. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2172 -[UP] flip: 8460, stem: 7064, fault:7372. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2162 -[UP] flip: 9016, stem: 6284, fault:7372. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2160 -[UP] flip: 1715, stem: 8025, fault:7372. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2151 -[UP] flip: 2008, stem: 8985, fault:7391. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2152 -[UP] flip: 4983, stem: 9565, fault:7410. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2151 -[UP] flip: 8477, stem: 9365, fault:7391. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2146 -[UP] flip: 4656, stem: 7765, fault:7391. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2143 -[UP] flip: 0, stem: 7725, fault:7391. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2143 -[UP] flip: 1867, stem: 9826, fault:7391. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2142 -[UP] flip: 0, stem: 5146, fault:7391. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2136 -[UP] flip: 0, stem: 6967, fault:7391. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2136 -[UP] flip: 4522, stem: 6567, fault:7372. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2133 -[UP] flip: 10228, stem: 6587, fault:7353. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2129 -[UP] flip: 4383, stem: 5947, fault:7334. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2126 -[UP] flip: 0, stem: 4327, fault:7334. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2126 -[UP] flip: 1882, stem: 6188, fault:7334. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2125 -[UP] flip: 8501, stem: 7368, fault:7315. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2122 -[UP] flip: 2928, stem: 7748, fault:7315. flip_cnt: 3, stem_cnt: 1480, fault_cnt:2123 -[UP] flip: 4252, stem: 7368, fault:7296. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2122 -[UP] flip: 8569, stem: 6748, fault:7277. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2119 -[UP] flip: 4173, stem: 7168, fault:7277. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2117 -[UP] flip: 4606, stem: 6928, fault:7258. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2114 -[UP] flip: 10340, stem: 7188, fault:7220. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2100 -[UP] flip: 4538, stem: 6228, fault:7220. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2097 -[UP] flip: 8470, stem: 7248, fault:7182. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2092 -[UP] flip: 3360, stem: 10328, fault:7182. flip_cnt: 4, stem_cnt: 1480, fault_cnt:2090 -[UP] flip: 6659, stem: 9568, fault:7144. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2094 -[UP] flip: 1859, stem: 4246, fault:7144. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2092 -[UP] flip: 8761, stem: 4066, fault:7144. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2090 -[UP] flip: 10575, stem: 4426, fault:7106. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2092 -[UP] flip: 2071, stem: 4866, fault:7106. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2089 -[UP] flip: 1466, stem: 6307, fault:7106. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2086 -[UP] flip: 6727, stem: 5527, fault:7087. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2082 -[UP] flip: 0, stem: 6288, fault:7087. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2080 -[UP] flip: 0, stem: 6048, fault:7087. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2080 -[UP] flip: 9096, stem: 5748, fault:7087. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2078 -[UP] flip: 7201, stem: 5228, fault:7049. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2074 -[UP] flip: 0, stem: 5968, fault:7030. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2072 -[UP] flip: 1790, stem: 6669, fault:7011. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2069 -[UP] flip: 4941, stem: 6529, fault:7011. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2067 -[UP] flip: 6541, stem: 5530, fault:7011. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2057 -[UP] flip: 0, stem: 7151, fault:7011. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2057 -[UP] flip: 0, stem: 7211, fault:7011. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2057 -[UP] flip: 8918, stem: 6951, fault:7011. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2055 -[UP] flip: 0, stem: 7151, fault:7011. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2055 -[UP] flip: 0, stem: 6851, fault:7011. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2055 -[UP] flip: 0, stem: 6550, fault:7011. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2055 -[UP] flip: 1665, stem: 7251, fault:6992. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2052 -[UP] flip: 6761, stem: 7191, fault:6973. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2048 -[UP] flip: 9060, stem: 8711, fault:6973. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2046 -[UP] flip: 1607, stem: 9152, fault:6973. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2045 -[UP] flip: 0, stem: 9653, fault:6973. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2045 -[UP] flip: 6930, stem: 9713, fault:6935. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2041 -[UP] flip: 8479, stem: 8933, fault:6878. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2036 -[UP] flip: 0, stem: 9673, fault:6878. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2036 -[UP] flip: 1908, stem: 8494, fault:6859. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2033 -[UP] flip: 10559, stem: 6551, fault:6840. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2029 -[UP] flip: 8784, stem: 7051, fault:6840. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2027 -[UP] flip: 4423, stem: 6611, fault:6840. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2025 -[UP] flip: 3794, stem: 6291, fault:6840. flip_cnt: 4, stem_cnt: 1477, fault_cnt:2023 -[UP] flip: 8667, stem: 6111, fault:6992. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2085 -[UP] flip: 0, stem: 6211, fault:6992. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2079 -[UP] flip: 1655, stem: 7692, fault:6992. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2078 -[UP] flip: 0, stem: 8013, fault:6992. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2078 -[UP] flip: 7048, stem: 7613, fault:6992. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2074 -[UP] flip: 0, stem: 7833, fault:6992. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2074 -[UP] flip: 1618, stem: 8834, fault:6992. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2073 -[UP] flip: 3459, stem: 9675, fault:6992. flip_cnt: 4, stem_cnt: 1473, fault_cnt:2071 -[UP] flip: 6464, stem: 10335, fault:6935. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2052 -[UP] flip: 6896, stem: 10235, fault:6897. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2046 -[UP] flip: 5286, stem: 9696, fault:6897. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2042 -[UP] flip: 0, stem: 10276, fault:6897. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2042 -[UP] flip: 0, stem: 10155, fault:6897. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2042 -[UP] flip: 5067, stem: 10555, fault:6897. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2040 -[UP] flip: 4571, stem: 9995, fault:6897. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2038 -[UP] flip: 1502, stem: 10435, fault:6802. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2014 -[UP] flip: 1058, stem: 8775, fault:6783. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2009 -[UP] flip: 0, stem: 6414, fault:6783. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2010 -[UP] flip: 5209, stem: 6853, fault:6764. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2012 -[UP] flip: 9127, stem: 7073, fault:6688. flip_cnt: 5, stem_cnt: 1475, fault_cnt:1971 -[UP] flip: 6365, stem: 6833, fault:6688. flip_cnt: 7, stem_cnt: 1475, fault_cnt:1969 -[UP] flip: 0, stem: 6793, fault:6688. flip_cnt: 0, stem_cnt: 1475, fault_cnt:1969 -[UP] flip: 1064, stem: 6132, fault:6707. flip_cnt: 2, stem_cnt: 1476, fault_cnt:1970 -[UP] flip: 3423, stem: 5892, fault:6916. flip_cnt: 4, stem_cnt: 1476, fault_cnt:2084 -[UP] flip: 0, stem: 7212, fault:6916. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2093 -[UP] flip: 1909, stem: 5831, fault:6916. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2096 -[UP] flip: 1971, stem: 5792, fault:6916. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2119 -[UP] flip: 5766, stem: 6012, fault:6897. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2116 -[UP] flip: 2913, stem: 6511, fault:6764. flip_cnt: 3, stem_cnt: 1477, fault_cnt:2028 -[UP] flip: 1913, stem: 7072, fault:6764. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2025 -[UP] flip: 4886, stem: 6850, fault:6764. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2027 -[UP] flip: 2128, stem: 6770, fault:6764. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2037 -[UP] flip: 2493, stem: 6290, fault:6764. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2078 -[UP] flip: 4452, stem: 5670, fault:6764. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2074 -[UP] flip: 11047, stem: 5890, fault:6764. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2069 -[UP] flip: 4659, stem: 5810, fault:6764. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2067 -[UP] flip: 1863, stem: 6391, fault:6764. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2056 -[UP] flip: 8741, stem: 7591, fault:6764. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2052 -[UP] flip: 8827, stem: 6851, fault:6745. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2049 -[UP] flip: 6397, stem: 6571, fault:6726. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2045 -[UP] flip: 4608, stem: 6630, fault:6707. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2047 -[UP] flip: 2737, stem: 5591, fault:6802. flip_cnt: 3, stem_cnt: 1477, fault_cnt:2090 -[UP] flip: 8804, stem: 4851, fault:6897. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2096 -[UP] flip: 2827, stem: 5971, fault:6878. flip_cnt: 3, stem_cnt: 1477, fault_cnt:2093 -[UP] flip: 2963, stem: 5751, fault:6878. flip_cnt: 3, stem_cnt: 1477, fault_cnt:2090 -[UP] flip: 9044, stem: 6671, fault:6840. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2086 -[UP] flip: 3425, stem: 6750, fault:6840. flip_cnt: 4, stem_cnt: 1478, fault_cnt:2083 -[UP] flip: 6504, stem: 7430, fault:6783. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2080 -[UP] flip: 3398, stem: 7591, fault:6783. flip_cnt: 4, stem_cnt: 1477, fault_cnt:2078 -[UP] flip: 6990, stem: 7591, fault:6745. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2071 -[UP] flip: 6401, stem: 8111, fault:6707. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2065 -[UP] flip: 3875, stem: 8072, fault:6555. flip_cnt: 4, stem_cnt: 1476, fault_cnt:2024 -[UP] flip: 4667, stem: 6992, fault:6555. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2015 -[UP] flip: 4558, stem: 5170, fault:6593. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2015 -[UP] flip: 6637, stem: 4809, fault:6802. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2050 -[UP] flip: 0, stem: 4650, fault:6783. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2046 -[UP] flip: 7026, stem: 4910, fault:6783. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2042 -[UP] flip: 4845, stem: 5150, fault:6783. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2020 -[UP] flip: 3253, stem: 4330, fault:6783. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2019 -[UP] flip: 0, stem: 4630, fault:6783. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2019 -[UP] flip: 3894, stem: 5851, fault:6783. flip_cnt: 4, stem_cnt: 1477, fault_cnt:2017 -[UP] flip: 0, stem: 6071, fault:6726. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2008 -[UP] flip: 0, stem: 4931, fault:6726. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2008 -[UP] flip: 0, stem: 4691, fault:6726. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2008 -[UP] flip: 9247, stem: 5830, fault:6726. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2006 -[UP] flip: 0, stem: 5850, fault:6726. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2006 -[UP] flip: 1841, stem: 6631, fault:6726. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2003 -[UP] flip: 7429, stem: 7311, fault:6726. flip_cnt: 7, stem_cnt: 1477, fault_cnt:1999 -[UP] flip: 3389, stem: 6952, fault:6726. flip_cnt: 4, stem_cnt: 1476, fault_cnt:2008 -[UP] flip: 1882, stem: 6491, fault:6745. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2013 -[UP] flip: 4931, stem: 6531, fault:6745. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2011 -[UP] flip: 0, stem: 7831, fault:6745. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2011 -[UP] flip: 0, stem: 7511, fault:6745. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2011 -[UP] flip: 0, stem: 4251, fault:6745. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2009 -[UP] flip: 0, stem: 4352, fault:6745. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2009 -[UP] flip: 0, stem: 4072, fault:6745. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2009 -[UP] flip: 0, stem: 4072, fault:6745. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2009 -[UP] flip: 0, stem: 5413, fault:6745. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2009 -[UP] flip: 1979, stem: 5554, fault:6745. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2006 -[UP] flip: 0, stem: 5714, fault:6745. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2006 -[UP] flip: 10898, stem: 5614, fault:6745. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2002 -[UP] flip: 8601, stem: 5374, fault:6745. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2000 -[UP] flip: 1981, stem: 5371, fault:6745. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2003 -[UP] flip: 1545, stem: 5652, fault:7068. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2100 -[UP] flip: 3843, stem: 5832, fault:7087. flip_cnt: 4, stem_cnt: 1476, fault_cnt:2098 -[UP] flip: 5310, stem: 5632, fault:7068. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2094 -[UP] flip: 4447, stem: 5692, fault:7030. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2090 -[UP] flip: 7274, stem: 6432, fault:6916. flip_cnt: 7, stem_cnt: 1476, fault_cnt:2067 -[UP] flip: 0, stem: 5892, fault:6916. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2066 -[UP] flip: 5045, stem: 5932, fault:6916. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2064 -[UP] flip: 1694, stem: 6193, fault:6897. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2063 -[UP] flip: 5084, stem: 5713, fault:6916. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2062 -[UP] flip: 3430, stem: 5973, fault:6726. flip_cnt: 4, stem_cnt: 1475, fault_cnt:1974 -[UP] flip: 8720, stem: 4653, fault:6973. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2058 -[UP] flip: 0, stem: 5353, fault:6973. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2058 -[UP] flip: 10792, stem: 5393, fault:6954. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2054 -[UP] flip: 0, stem: 5353, fault:6954. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2054 -[UP] flip: 4487, stem: 3913, fault:6954. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2050 -[UP] flip: 2211, stem: 3553, fault:6745. flip_cnt: 2, stem_cnt: 1475, fault_cnt:1981 -[UP] flip: 2122, stem: 3254, fault:6745. flip_cnt: 2, stem_cnt: 1474, fault_cnt:1978 -[UP] flip: 5934, stem: 3234, fault:6726. flip_cnt: 2, stem_cnt: 1474, fault_cnt:1977 -[UP] flip: 0, stem: 5034, fault:6726. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1977 -[UP] flip: 0, stem: 4734, fault:6726. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1977 -[UP] flip: 11223, stem: 5034, fault:6726. flip_cnt: 7, stem_cnt: 1474, fault_cnt:1973 -[UP] flip: 0, stem: 6135, fault:6802. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1979 -[UP] flip: 2167, stem: 5594, fault:6802. flip_cnt: 2, stem_cnt: 1474, fault_cnt:1980 -[UP] flip: 0, stem: 5415, fault:6992. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2057 -[UP] flip: 0, stem: 5555, fault:6992. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2057 -[UP] flip: 0, stem: 5575, fault:6992. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2057 -[UP] flip: 0, stem: 5595, fault:6992. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2057 -[UP] flip: 3678, stem: 5696, fault:6992. flip_cnt: 4, stem_cnt: 1472, fault_cnt:2055 -[UP] flip: 6723, stem: 2753, fault:6992. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2048 -[UP] flip: 0, stem: 4693, fault:6802. flip_cnt: 0, stem_cnt: 1475, fault_cnt:1977 -[UP] flip: 6575, stem: 5513, fault:6802. flip_cnt: 7, stem_cnt: 1475, fault_cnt:1973 -[UP] flip: 0, stem: 4974, fault:6802. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1973 -[UP] flip: 0, stem: 5694, fault:6802. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1973 -[UP] flip: 5303, stem: 6094, fault:6783. flip_cnt: 5, stem_cnt: 1474, fault_cnt:1971 -[UP] flip: 0, stem: 6174, fault:6783. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1968 -[UP] flip: 0, stem: 6834, fault:6783. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1968 -[UP] flip: 8707, stem: 6154, fault:6783. flip_cnt: 5, stem_cnt: 1474, fault_cnt:1966 -[UP] flip: 5079, stem: 6113, fault:6783. flip_cnt: 5, stem_cnt: 1475, fault_cnt:1968 -[UP] flip: 0, stem: 6753, fault:6783. flip_cnt: 0, stem_cnt: 1475, fault_cnt:1966 -[UP] flip: 4906, stem: 7293, fault:6783. flip_cnt: 5, stem_cnt: 1475, fault_cnt:1964 -[UP] flip: 3272, stem: 6711, fault:6783. flip_cnt: 4, stem_cnt: 1477, fault_cnt:1967 -[UP] flip: 4954, stem: 4770, fault:6802. flip_cnt: 5, stem_cnt: 1478, fault_cnt:1985 -[UP] flip: 5040, stem: 5010, fault:7144. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2067 -[UP] flip: 2175, stem: 5391, fault:7144. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2066 -[UP] flip: 0, stem: 5012, fault:7144. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2066 -[UP] flip: 5316, stem: 4590, fault:7163. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2068 -[UP] flip: 1897, stem: 4611, fault:7258. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2113 -[UP] flip: 1719, stem: 4272, fault:7258. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2110 -[UP] flip: 11211, stem: 5212, fault:7239. flip_cnt: 7, stem_cnt: 1476, fault_cnt:2106 -[UP] flip: 5040, stem: 4772, fault:7239. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2102 -[UP] flip: 6739, stem: 4592, fault:7144. flip_cnt: 7, stem_cnt: 1476, fault_cnt:2060 -[UP] flip: 7181, stem: 3710, fault:7182. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2069 -[UP] flip: 4111, stem: 4671, fault:7144. flip_cnt: 4, stem_cnt: 1477, fault_cnt:2065 -[UP] flip: 4964, stem: 4651, fault:7144. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2062 -[UP] flip: 1997, stem: 4872, fault:6802. flip_cnt: 2, stem_cnt: 1476, fault_cnt:1975 -[UP] flip: 5330, stem: 5652, fault:6783. flip_cnt: 5, stem_cnt: 1476, fault_cnt:1973 -[UP] flip: 2027, stem: 5153, fault:6745. flip_cnt: 2, stem_cnt: 1475, fault_cnt:1968 -[UP] flip: 0, stem: 4953, fault:6745. flip_cnt: 0, stem_cnt: 1475, fault_cnt:1968 -[UP] flip: 6755, stem: 4673, fault:6745. flip_cnt: 7, stem_cnt: 1475, fault_cnt:1964 -[UP] flip: 11060, stem: 5693, fault:6669. flip_cnt: 7, stem_cnt: 1475, fault_cnt:1954 -[UP] flip: 0, stem: 5873, fault:6669. flip_cnt: 0, stem_cnt: 1475, fault_cnt:1954 -[UP] flip: 4902, stem: 6053, fault:6669. flip_cnt: 5, stem_cnt: 1475, fault_cnt:1952 -[UP] flip: 5451, stem: 6193, fault:6669. flip_cnt: 5, stem_cnt: 1475, fault_cnt:1948 -[UP] flip: 2443, stem: 6134, fault:6650. flip_cnt: 2, stem_cnt: 1474, fault_cnt:1947 -[UP] flip: 5272, stem: 5053, fault:6631. flip_cnt: 5, stem_cnt: 1475, fault_cnt:1945 -[UP] flip: 0, stem: 4554, fault:6631. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1945 -[UP] flip: 5200, stem: 4774, fault:6631. flip_cnt: 5, stem_cnt: 1474, fault_cnt:1943 -[UP] flip: 2187, stem: 5195, fault:6631. flip_cnt: 2, stem_cnt: 1473, fault_cnt:1940 -[UP] flip: 3283, stem: 5955, fault:6650. flip_cnt: 4, stem_cnt: 1473, fault_cnt:1938 -[UP] flip: 6644, stem: 5435, fault:6631. flip_cnt: 7, stem_cnt: 1473, fault_cnt:1947 -[UP] flip: 1815, stem: 5775, fault:6612. flip_cnt: 2, stem_cnt: 1473, fault_cnt:1942 -[UP] flip: 0, stem: 6375, fault:6593. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1940 -[UP] flip: 11361, stem: 4753, fault:6631. flip_cnt: 7, stem_cnt: 1475, fault_cnt:1942 -[UP] flip: 4683, stem: 4995, fault:6612. flip_cnt: 5, stem_cnt: 1473, fault_cnt:1937 -[UP] flip: 0, stem: 5495, fault:6593. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1935 -[UP] flip: 0, stem: 6055, fault:6593. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1935 -[UP] flip: 5145, stem: 5835, fault:6593. flip_cnt: 5, stem_cnt: 1473, fault_cnt:1933 -[UP] flip: 3383, stem: 5853, fault:6612. flip_cnt: 4, stem_cnt: 1475, fault_cnt:1936 -[UP] flip: 2144, stem: 5794, fault:7144. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2070 -[UP] flip: 5338, stem: 6354, fault:7125. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2068 -[UP] flip: 0, stem: 6574, fault:6631. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1937 -[UP] flip: 1087, stem: 6495, fault:6612. flip_cnt: 2, stem_cnt: 1473, fault_cnt:1934 -[UP] flip: 5153, stem: 5933, fault:6612. flip_cnt: 5, stem_cnt: 1475, fault_cnt:1938 -[UP] flip: 1955, stem: 7114, fault:7087. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2073 -[UP] flip: 0, stem: 7114, fault:7087. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2073 -[UP] flip: 0, stem: 7314, fault:7087. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2073 -[UP] flip: 6844, stem: 6734, fault:7087. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2069 -[UP] flip: 11683, stem: 6434, fault:7068. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2065 -[UP] flip: 2225, stem: 6614, fault:7068. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2064 -[UP] flip: 0, stem: 7634, fault:7068. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2062 -[UP] flip: 7193, stem: 7914, fault:7030. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2058 -[UP] flip: 4035, stem: 7135, fault:6992. flip_cnt: 4, stem_cnt: 1473, fault_cnt:2054 -[UP] flip: 2233, stem: 7175, fault:6992. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2052 -[UP] flip: 4575, stem: 7375, fault:7011. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2073 -[UP] flip: 0, stem: 8235, fault:7011. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2073 -[UP] flip: 1090, stem: 7974, fault:7030. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2076 -[UP] flip: 7722, stem: 7494, fault:7049. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2085 -[UP] flip: 5168, stem: 7514, fault:7049. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2079 -[UP] flip: 0, stem: 7394, fault:6916. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2044 -[UP] flip: 0, stem: 9155, fault:6916. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2044 -[UP] flip: 3991, stem: 8713, fault:6935. flip_cnt: 4, stem_cnt: 1475, fault_cnt:2047 -[UP] flip: 0, stem: 7854, fault:6992. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2050 -[UP] flip: 6783, stem: 7794, fault:6992. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2046 -[UP] flip: 2189, stem: 8054, fault:6821. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2013 -[UP] flip: 2238, stem: 8015, fault:6821. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2014 -[UP] flip: 6670, stem: 8255, fault:6821. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2010 -[UP] flip: 5504, stem: 7755, fault:6802. flip_cnt: 5, stem_cnt: 1473, fault_cnt:2008 -[UP] flip: 6324, stem: 7955, fault:6764. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2004 -[UP] flip: 0, stem: 7995, fault:6764. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2004 -[UP] flip: 0, stem: 8175, fault:6764. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2004 -[UP] flip: 6574, stem: 7695, fault:6745. flip_cnt: 7, stem_cnt: 1473, fault_cnt:2000 -[UP] flip: 2045, stem: 6916, fault:6726. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2001 -[UP] flip: 4453, stem: 5776, fault:6726. flip_cnt: 5, stem_cnt: 1472, fault_cnt:1999 -[UP] flip: 4610, stem: 5854, fault:6517. flip_cnt: 5, stem_cnt: 1474, fault_cnt:1915 -[UP] flip: 6524, stem: 5234, fault:7011. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2057 -[UP] flip: 3364, stem: 3834, fault:7011. flip_cnt: 3, stem_cnt: 1474, fault_cnt:2054 -[UP] flip: 1922, stem: 4114, fault:7011. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2053 -[UP] flip: 8885, stem: 4014, fault:7011. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2051 -[UP] flip: 8617, stem: 2752, fault:7030. flip_cnt: 4, stem_cnt: 1476, fault_cnt:2054 -[UP] flip: 2245, stem: 2893, fault:7087. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2085 -[UP] flip: 9462, stem: 3093, fault:7030. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2081 -[UP] flip: 7257, stem: 3293, fault:6992. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2077 -[UP] flip: 5692, stem: 3893, fault:6973. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2075 -[UP] flip: 0, stem: 3573, fault:6897. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2038 -[UP] flip: 0, stem: 3873, fault:6897. flip_cnt: 0, stem_cnt: 1475, fault_cnt:2038 -[UP] flip: 2200, stem: 3853, fault:6897. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2035 -[UP] flip: 5505, stem: 4113, fault:6897. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2033 -[UP] flip: 1098, stem: 4094, fault:6878. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2030 -[UP] flip: 2393, stem: 4133, fault:6878. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2031 -[UP] flip: 2068, stem: 3552, fault:6859. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2068 -[UP] flip: 5386, stem: 4572, fault:6859. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2065 -[UP] flip: 11312, stem: 4712, fault:6859. flip_cnt: 7, stem_cnt: 1476, fault_cnt:2061 -[UP] flip: 0, stem: 4290, fault:6859. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2061 -[UP] flip: 7265, stem: 4390, fault:6821. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2057 -[UP] flip: 1102, stem: 4871, fault:6764. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2021 -[UP] flip: 0, stem: 4211, fault:6764. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2021 -[UP] flip: 2061, stem: 3552, fault:6764. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2020 -[UP] flip: 3584, stem: 3513, fault:6764. flip_cnt: 4, stem_cnt: 1475, fault_cnt:2018 -[UP] flip: 6615, stem: 3413, fault:6270. flip_cnt: 7, stem_cnt: 1475, fault_cnt:1880 -[UP] flip: 6627, stem: 3513, fault:6270. flip_cnt: 7, stem_cnt: 1475, fault_cnt:1876 -[UP] flip: 0, stem: 3934, fault:6270. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1876 -[UP] flip: 1075, stem: 2731, fault:6270. flip_cnt: 2, stem_cnt: 1477, fault_cnt:1879 -[UP] flip: 2944, stem: 2150, fault:6650. flip_cnt: 4, stem_cnt: 1478, fault_cnt:2008 -[UP] flip: 4887, stem: 2390, fault:6821. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2080 -[UP] flip: 7047, stem: 5130, fault:6650. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2008 -[UP] flip: 0, stem: 5790, fault:6650. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2006 -[UP] flip: 7303, stem: 5710, fault:6650. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2002 -[UP] flip: 0, stem: 5311, fault:6650. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2002 -[UP] flip: 0, stem: 5470, fault:6650. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2002 -[UP] flip: 1357, stem: 5670, fault:6650. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2001 -[UP] flip: 2401, stem: 5691, fault:6650. flip_cnt: 2, stem_cnt: 1477, fault_cnt:1996 -[UP] flip: 5039, stem: 5509, fault:6650. flip_cnt: 5, stem_cnt: 1479, fault_cnt:1999 -[UP] flip: 5495, stem: 1786, fault:7011. flip_cnt: 6, stem_cnt: 1482, fault_cnt:2077 -[UP] flip: 0, stem: 1746, fault:7144. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2124 -[UP] flip: 5424, stem: 1164, fault:7163. flip_cnt: 6, stem_cnt: 1484, fault_cnt:2128 -[UP] flip: 1981, stem: 2847, fault:7144. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2139 -[UP] flip: 3498, stem: 3168, fault:7144. flip_cnt: 4, stem_cnt: 1480, fault_cnt:2137 -[UP] flip: 0, stem: 3308, fault:7144. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2134 -[UP] flip: 5279, stem: 3188, fault:7144. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2132 -[UP] flip: 6564, stem: 3127, fault:7125. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2113 -[UP] flip: 0, stem: 3868, fault:7125. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2113 -[UP] flip: 5285, stem: 2806, fault:7125. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2115 -[UP] flip: 1984, stem: 2506, fault:7182. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2138 -[UP] flip: 0, stem: 2506, fault:7296. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2155 -[UP] flip: 5552, stem: 2226, fault:7296. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2152 -[UP] flip: 5440, stem: 1844, fault:7315. flip_cnt: 6, stem_cnt: 1484, fault_cnt:2156 -[UP] flip: 3531, stem: 1905, fault:7353. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2165 -[UP] flip: 7288, stem: 984, fault:7296. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2158 -[UP] flip: 4035, stem: 962, fault:7315. flip_cnt: 4, stem_cnt: 1486, fault_cnt:2161 -[UP] flip: 5620, stem: 3261, fault:7467. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2171 -[UP] flip: 5248, stem: 4883, fault:7467. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2169 -[UP] flip: 1872, stem: 5284, fault:7429. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2160 -[UP] flip: 7219, stem: 5904, fault:7391. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2156 -[UP] flip: 0, stem: 6624, fault:7353. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2154 -[UP] flip: 11442, stem: 5684, fault:7353. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2150 -[UP] flip: 0, stem: 6585, fault:7353. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2150 -[UP] flip: 9471, stem: 6445, fault:7353. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2148 -[UP] flip: 0, stem: 7185, fault:7353. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2148 -[UP] flip: 7386, stem: 7485, fault:7315. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2144 -[UP] flip: 9480, stem: 5883, fault:7315. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2144 -[UP] flip: 2199, stem: 5663, fault:7391. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2152 -[UP] flip: 9289, stem: 4823, fault:7391. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2148 -[UP] flip: 1577, stem: 6904, fault:7391. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2145 -[UP] flip: 0, stem: 6144, fault:7391. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2145 -[UP] flip: 1876, stem: 6804, fault:7391. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2146 -[UP] flip: 6743, stem: 5844, fault:7429. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2150 -[UP] flip: 6600, stem: 5684, fault:7429. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2146 -[UP] flip: 9437, stem: 5824, fault:7429. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2142 -[UP] flip: 1493, stem: 6005, fault:7429. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2139 -[UP] flip: 6310, stem: 5805, fault:7429. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2135 -[UP] flip: 0, stem: 5965, fault:7429. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2135 -[UP] flip: 9524, stem: 5985, fault:7429. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2133 -[UP] flip: 4955, stem: 6165, fault:7410. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2131 -[UP] flip: 0, stem: 6285, fault:7391. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2125 -[UP] flip: 3983, stem: 6385, fault:7391. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2123 -[UP] flip: 0, stem: 6605, fault:7448. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2141 -[UP] flip: 2274, stem: 3166, fault:7391. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2132 -[UP] flip: 9575, stem: 3266, fault:7391. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2130 -[UP] flip: 4015, stem: 3706, fault:7410. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2128 -[UP] flip: 6821, stem: 2986, fault:7448. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2128 -[UP] flip: 5596, stem: 3426, fault:7448. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2126 -[UP] flip: 7591, stem: 3106, fault:7372. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2116 -[UP] flip: 3599, stem: 6506, fault:7372. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2114 -[UP] flip: 2159, stem: 6747, fault:7372. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2119 -[UP] flip: 9342, stem: 6007, fault:7353. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2116 -[UP] flip: 3658, stem: 8288, fault:7334. flip_cnt: 4, stem_cnt: 1480, fault_cnt:2114 -[UP] flip: 0, stem: 8808, fault:7315. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2111 -[UP] flip: 7168, stem: 8428, fault:7296. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2107 -[UP] flip: 11900, stem: 8668, fault:7239. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2103 -[UP] flip: 1530, stem: 9247, fault:7239. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2104 -[UP] flip: 0, stem: 9327, fault:7391. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2120 -[UP] flip: 1827, stem: 9067, fault:7372. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2117 -[UP] flip: 4353, stem: 7527, fault:7353. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2115 -[UP] flip: 5561, stem: 7127, fault:7334. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2108 -[UP] flip: 5329, stem: 7587, fault:7315. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2106 -[UP] flip: 3551, stem: 8047, fault:7258. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2094 -[UP] flip: 7782, stem: 8487, fault:7258. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2108 -[UP] flip: 1532, stem: 8687, fault:7182. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2101 -[UP] flip: 4573, stem: 7687, fault:7163. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2102 -[UP] flip: 5657, stem: 7367, fault:7163. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2100 -[UP] flip: 2232, stem: 8448, fault:7144. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2099 -[UP] flip: 2152, stem: 8289, fault:7125. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2096 -[UP] flip: 11041, stem: 8169, fault:7125. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2092 -[UP] flip: 0, stem: 8510, fault:7125. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2092 -[UP] flip: 9739, stem: 8230, fault:7125. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2090 -[UP] flip: 4275, stem: 7950, fault:7125. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2088 -[UP] flip: 0, stem: 8170, fault:7125. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2088 -[UP] flip: 2088, stem: 8651, fault:7125. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2085 -[UP] flip: 0, stem: 8791, fault:7125. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2085 -[UP] flip: 4149, stem: 8591, fault:7144. flip_cnt: 4, stem_cnt: 1477, fault_cnt:2083 -[UP] flip: 1540, stem: 8510, fault:7163. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2084 -[UP] flip: 0, stem: 9611, fault:7163. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2084 -[UP] flip: 11542, stem: 9871, fault:7163. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2080 -[UP] flip: 5343, stem: 9209, fault:7163. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2084 -[UP] flip: 4649, stem: 9410, fault:7144. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2087 -[UP] flip: 2208, stem: 10571, fault:7125. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2086 -[UP] flip: 5666, stem: 10430, fault:7125. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2089 -[UP] flip: 0, stem: 10270, fault:7201. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2100 -[UP] flip: 0, stem: 9650, fault:7201. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2100 -[UP] flip: 1947, stem: 8487, fault:7201. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2103 -[UP] flip: 0, stem: 7305, fault:7239. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2135 -[UP] flip: 2198, stem: 7085, fault:7239. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2132 -[UP] flip: 5195, stem: 6645, fault:7239. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2130 -[UP] flip: 0, stem: 6165, fault:7239. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2130 -[UP] flip: 9912, stem: 7105, fault:7239. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2128 -[UP] flip: 5443, stem: 7245, fault:7239. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2125 -[UP] flip: 0, stem: 7666, fault:7239. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2124 -[UP] flip: 5448, stem: 6664, fault:7239. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2127 -[UP] flip: 4375, stem: 5624, fault:7258. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2150 -[UP] flip: 3565, stem: 5083, fault:7315. flip_cnt: 4, stem_cnt: 1485, fault_cnt:2159 -[UP] flip: 5361, stem: 5725, fault:7315. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2153 -[UP] flip: 5596, stem: 5443, fault:7315. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2146 -[UP] flip: 5456, stem: 5303, fault:7315. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2158 -[UP] flip: 3558, stem: 7124, fault:7315. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2156 -[UP] flip: 5700, stem: 2483, fault:7315. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2152 -[UP] flip: 0, stem: 2483, fault:7315. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2156 -[UP] flip: 0, stem: 2123, fault:7315. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2156 -[UP] flip: 1389, stem: 442, fault:7315. flip_cnt: 2, stem_cnt: 1486, fault_cnt:2159 -[UP] flip: 1391, stem: 2042, fault:7315. flip_cnt: 2, stem_cnt: 1486, fault_cnt:2156 -[UP] flip: 2095, stem: 3385, fault:7296. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2153 -[UP] flip: 5648, stem: 3445, fault:7258. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2143 -[UP] flip: 1126, stem: 2606, fault:7144. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2125 -[UP] flip: 6731, stem: 2806, fault:7125. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2121 -[UP] flip: 0, stem: 2707, fault:7125. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2121 -[UP] flip: 0, stem: 786, fault:7125. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2121 -[UP] flip: 0, stem: 1606, fault:7125. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2121 -[UP] flip: 1130, stem: 543, fault:7144. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2124 -[UP] flip: 7645, stem: 1363, fault:7239. flip_cnt: 7, stem_cnt: 1485, fault_cnt:2144 -[UP] flip: 1471, stem: 142, fault:7391. flip_cnt: 2, stem_cnt: 1486, fault_cnt:2164 -[UP] flip: 0, stem: 442, fault:7391. flip_cnt: 0, stem_cnt: 1486, fault_cnt:2162 -[UP] flip: 5585, stem: 0, fault:7429. flip_cnt: 6, stem_cnt: 1488, fault_cnt:2166 -FIND SOLUTION! -[SOL] flip: 0, stem: 0, fault:7467. flip_cnt: 0, stem_cnt: 1488, fault_cnt:2177 -coverage: 0.8797 pattern: 4 before: 982 now: 589 -checking valid circuit ... result: 1. -local search! -[UP] flip: 0, stem: 5398, fault:66. flip_cnt: 0, stem_cnt: 1230, fault_cnt:485 -[UP] flip: 0, stem: 5037, fault:115. flip_cnt: 0, stem_cnt: 1251, fault_cnt:772 -[UP] flip: 0, stem: 4585, fault:249. flip_cnt: 0, stem_cnt: 1303, fault_cnt:923 -[UP] flip: 9, stem: 5002, fault:386. flip_cnt: 5, stem_cnt: 1326, fault_cnt:1133 -[UP] flip: 7, stem: 3550, fault:675. flip_cnt: 2, stem_cnt: 1358, fault_cnt:1384 -[UP] flip: 0, stem: 4461, fault:802. flip_cnt: 0, stem_cnt: 1367, fault_cnt:1417 -[UP] flip: 9, stem: 4257, fault:1052. flip_cnt: 7, stem_cnt: 1371, fault_cnt:1518 -[UP] flip: 4, stem: 4455, fault:1223. flip_cnt: 2, stem_cnt: 1373, fault_cnt:1562 -[UP] flip: 26, stem: 4101, fault:1451. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1730 -[UP] flip: 9, stem: 3998, fault:1569. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1732 -[UP] flip: 32, stem: 4296, fault:1639. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1723 -[UP] flip: 0, stem: 4760, fault:1806. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1721 -[UP] flip: 20, stem: 4618, fault:1859. flip_cnt: 4, stem_cnt: 1390, fault_cnt:1566 -[UP] flip: 8, stem: 4923, fault:1895. flip_cnt: 2, stem_cnt: 1385, fault_cnt:1605 -[UP] flip: 10, stem: 5824, fault:1960. flip_cnt: 2, stem_cnt: 1384, fault_cnt:1669 -[UP] flip: 58, stem: 6182, fault:2057. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1675 -[UP] flip: 18, stem: 5752, fault:2285. flip_cnt: 3, stem_cnt: 1376, fault_cnt:1705 -[UP] flip: 53, stem: 6247, fault:2333. flip_cnt: 5, stem_cnt: 1381, fault_cnt:1686 -[UP] flip: 0, stem: 6755, fault:2519. flip_cnt: 0, stem_cnt: 1373, fault_cnt:1703 -[UP] flip: 33, stem: 5565, fault:2668. flip_cnt: 4, stem_cnt: 1383, fault_cnt:1728 -[UP] flip: 82, stem: 6264, fault:2647. flip_cnt: 5, stem_cnt: 1384, fault_cnt:1707 -[UP] flip: 33, stem: 6259, fault:2702. flip_cnt: 4, stem_cnt: 1389, fault_cnt:1718 -[UP] flip: 45, stem: 6313, fault:2718. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1680 -[UP] flip: 72, stem: 5489, fault:2849. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1579 -[UP] flip: 67, stem: 5847, fault:2907. flip_cnt: 3, stem_cnt: 1381, fault_cnt:1533 -[UP] flip: 83, stem: 5985, fault:3185. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1534 -[UP] flip: 109, stem: 7223, fault:3098. flip_cnt: 7, stem_cnt: 1385, fault_cnt:1503 -[UP] flip: 12, stem: 7064, fault:3388. flip_cnt: 2, stem_cnt: 1384, fault_cnt:1563 -[UP] flip: 61, stem: 7621, fault:3285. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1530 -[UP] flip: 82, stem: 7538, fault:3381. flip_cnt: 4, stem_cnt: 1390, fault_cnt:1560 -[UP] flip: 31, stem: 7504, fault:2864. flip_cnt: 3, stem_cnt: 1384, fault_cnt:1259 -[UP] flip: 145, stem: 7683, fault:3218. flip_cnt: 7, stem_cnt: 1385, fault_cnt:1503 -[UP] flip: 190, stem: 9284, fault:3218. flip_cnt: 7, stem_cnt: 1384, fault_cnt:1493 -[UP] flip: 33, stem: 7552, fault:2428. flip_cnt: 2, stem_cnt: 1376, fault_cnt:1317 -[UP] flip: 9, stem: 8060, fault:2562. flip_cnt: 2, stem_cnt: 1368, fault_cnt:1346 -[UP] flip: 0, stem: 7597, fault:2433. flip_cnt: 0, stem_cnt: 1371, fault_cnt:1241 -[UP] flip: 25, stem: 7510, fault:2583. flip_cnt: 2, stem_cnt: 1378, fault_cnt:1221 -[UP] flip: 0, stem: 8528, fault:2968. flip_cnt: 0, stem_cnt: 1380, fault_cnt:1397 -[UP] flip: 0, stem: 7623, fault:2867. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1328 -[UP] flip: 232, stem: 8030, fault:2570. flip_cnt: 7, stem_cnt: 1378, fault_cnt:1081 -[UP] flip: 0, stem: 8285, fault:2368. flip_cnt: 0, stem_cnt: 1383, fault_cnt:992 -[UP] flip: 55, stem: 8625, fault:2353. flip_cnt: 2, stem_cnt: 1383, fault_cnt:1030 -[UP] flip: 135, stem: 10145, fault:2278. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1022 -[UP] flip: 155, stem: 9558, fault:2655. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1151 -[UP] flip: 142, stem: 9102, fault:2802. flip_cnt: 7, stem_cnt: 1386, fault_cnt:1193 -[UP] flip: 0, stem: 10901, fault:2802. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1201 -[UP] flip: 141, stem: 9652, fault:2693. flip_cnt: 5, stem_cnt: 1376, fault_cnt:1233 -[UP] flip: 76, stem: 9185, fault:2792. flip_cnt: 4, stem_cnt: 1383, fault_cnt:1308 -[UP] flip: 147, stem: 9641, fault:2683. flip_cnt: 4, stem_cnt: 1387, fault_cnt:1311 -[UP] flip: 81, stem: 8744, fault:3007. flip_cnt: 2, stem_cnt: 1384, fault_cnt:1520 -[UP] flip: 65, stem: 10208, fault:3045. flip_cnt: 4, stem_cnt: 1380, fault_cnt:1524 -[UP] flip: 0, stem: 8478, fault:3007. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1647 -[UP] flip: 100, stem: 8358, fault:3026. flip_cnt: 2, stem_cnt: 1390, fault_cnt:1603 -[UP] flip: 93, stem: 8396, fault:3096. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1594 -[UP] flip: 237, stem: 8354, fault:3115. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1595 -[UP] flip: 68, stem: 8813, fault:3295. flip_cnt: 3, stem_cnt: 1395, fault_cnt:1612 -[UP] flip: 214, stem: 9750, fault:3457. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1673 -[UP] flip: 215, stem: 11210, fault:3457. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1669 -[UP] flip: 99, stem: 12711, fault:3457. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1678 -[UP] flip: 0, stem: 11119, fault:3458. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1637 -[UP] flip: 234, stem: 10058, fault:3477. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1616 -[UP] flip: 101, stem: 11575, fault:3477. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1602 -[UP] flip: 274, stem: 13035, fault:3515. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1617 -[UP] flip: 198, stem: 9817, fault:3080. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1610 -[UP] flip: 44, stem: 11099, fault:3004. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1583 -[UP] flip: 153, stem: 10719, fault:2928. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1466 -[UP] flip: 205, stem: 12358, fault:2928. flip_cnt: 4, stem_cnt: 1390, fault_cnt:1461 -[UP] flip: 133, stem: 11198, fault:2900. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1433 -[UP] flip: 242, stem: 10439, fault:2862. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1414 -[UP] flip: 56, stem: 11017, fault:2827. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1361 -[UP] flip: 219, stem: 12315, fault:2830. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1403 -[UP] flip: 0, stem: 11361, fault:2260. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1208 -[UP] flip: 0, stem: 11403, fault:2602. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1327 -[UP] flip: 155, stem: 11799, fault:2659. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1351 -[UP] flip: 180, stem: 13479, fault:2640. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1339 -[UP] flip: 227, stem: 14122, fault:2602. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1299 -[UP] flip: 269, stem: 14183, fault:2488. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1269 -[UP] flip: 301, stem: 13887, fault:2393. flip_cnt: 5, stem_cnt: 1381, fault_cnt:1265 -[UP] flip: 112, stem: 12759, fault:2488. flip_cnt: 2, stem_cnt: 1369, fault_cnt:1344 -[UP] flip: 232, stem: 14819, fault:2488. flip_cnt: 5, stem_cnt: 1369, fault_cnt:1342 -[UP] flip: 0, stem: 12599, fault:2602. flip_cnt: 0, stem_cnt: 1369, fault_cnt:1426 -[UP] flip: 260, stem: 12369, fault:2507. flip_cnt: 7, stem_cnt: 1379, fault_cnt:1410 -[UP] flip: 64, stem: 11626, fault:2266. flip_cnt: 2, stem_cnt: 1382, fault_cnt:1286 -[UP] flip: 139, stem: 13163, fault:2266. flip_cnt: 3, stem_cnt: 1385, fault_cnt:1283 -[UP] flip: 0, stem: 12457, fault:2570. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1317 -[UP] flip: 0, stem: 14117, fault:2570. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1317 -[UP] flip: 161, stem: 12713, fault:2456. flip_cnt: 3, stem_cnt: 1395, fault_cnt:1230 -[UP] flip: 0, stem: 14272, fault:2456. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1230 -[UP] flip: 127, stem: 13156, fault:2627. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1324 -[UP] flip: 78, stem: 13332, fault:2608. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1358 -[UP] flip: 338, stem: 14247, fault:2760. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1443 -[UP] flip: 426, stem: 15687, fault:2722. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1439 -[UP] flip: 0, stem: 13844, fault:2304. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1271 -[UP] flip: 0, stem: 15006, fault:2304. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1271 -[UP] flip: 60, stem: 13945, fault:2703. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1458 -[UP] flip: 81, stem: 14658, fault:2722. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1531 -[UP] flip: 152, stem: 14762, fault:2703. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1555 -[UP] flip: 321, stem: 15381, fault:2684. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1548 -[UP] flip: 372, stem: 15522, fault:2779. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1582 -[UP] flip: 0, stem: 15579, fault:2665. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1583 -[UP] flip: 479, stem: 16204, fault:2760. flip_cnt: 7, stem_cnt: 1384, fault_cnt:1582 -[UP] flip: 165, stem: 18064, fault:2722. flip_cnt: 5, stem_cnt: 1384, fault_cnt:1579 -[UP] flip: 269, stem: 10513, fault:2539. flip_cnt: 4, stem_cnt: 1395, fault_cnt:1421 -[UP] flip: 114, stem: 12011, fault:2520. flip_cnt: 3, stem_cnt: 1397, fault_cnt:1418 -[UP] flip: 192, stem: 9310, fault:2568. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1310 -[UP] flip: 0, stem: 10832, fault:2568. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1310 -[UP] flip: 0, stem: 11236, fault:2397. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1220 -[UP] flip: 0, stem: 11519, fault:2378. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1205 -[UP] flip: 0, stem: 11877, fault:2397. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1253 -[UP] flip: 436, stem: 11496, fault:2283. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1269 -[UP] flip: 407, stem: 13156, fault:2283. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1267 -[UP] flip: 168, stem: 10787, fault:2321. flip_cnt: 3, stem_cnt: 1401, fault_cnt:1330 -[UP] flip: 0, stem: 12287, fault:2378. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1345 -[UP] flip: 270, stem: 13787, fault:2378. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1342 -[UP] flip: 364, stem: 10766, fault:2511. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1411 -[UP] flip: 82, stem: 11906, fault:2511. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1409 -[UP] flip: 114, stem: 13005, fault:2473. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1402 -[UP] flip: 434, stem: 12486, fault:2378. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1356 -[UP] flip: 98, stem: 12882, fault:2378. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1372 -[UP] flip: 0, stem: 14302, fault:2378. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1372 -[UP] flip: 238, stem: 15743, fault:2378. flip_cnt: 4, stem_cnt: 1405, fault_cnt:1370 -[UP] flip: 0, stem: 12899, fault:2036. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1193 -[UP] flip: 487, stem: 14458, fault:2036. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1191 -[UP] flip: 257, stem: 11529, fault:2188. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1310 -[UP] flip: 0, stem: 12869, fault:2188. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1306 -[UP] flip: 175, stem: 12431, fault:2112. flip_cnt: 4, stem_cnt: 1397, fault_cnt:1274 -[UP] flip: 127, stem: 13911, fault:2074. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1270 -[UP] flip: 81, stem: 14792, fault:2169. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1300 -[UP] flip: 218, stem: 16172, fault:2169. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1298 -[UP] flip: 0, stem: 14455, fault:1979. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1195 -[UP] flip: 472, stem: 14836, fault:1960. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1150 -[UP] flip: 350, stem: 15956, fault:1960. flip_cnt: 4, stem_cnt: 1392, fault_cnt:1148 -[UP] flip: 156, stem: 17475, fault:1979. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1158 -[UP] flip: 331, stem: 15635, fault:2074. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1246 -[UP] flip: 358, stem: 15034, fault:2454. flip_cnt: 4, stem_cnt: 1394, fault_cnt:1465 -[UP] flip: 0, stem: 16614, fault:2454. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1467 -[UP] flip: 353, stem: 18076, fault:2397. flip_cnt: 4, stem_cnt: 1392, fault_cnt:1387 -[UP] flip: 319, stem: 15337, fault:2758. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1571 -[UP] flip: 346, stem: 16957, fault:2739. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1567 -[UP] flip: 0, stem: 15657, fault:2720. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1480 -[UP] flip: 145, stem: 17318, fault:2720. flip_cnt: 2, stem_cnt: 1390, fault_cnt:1477 -[UP] flip: 0, stem: 19059, fault:2720. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1477 -[UP] flip: 204, stem: 17156, fault:2739. flip_cnt: 3, stem_cnt: 1392, fault_cnt:1510 -[UP] flip: 123, stem: 16594, fault:2853. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1573 -[UP] flip: 0, stem: 18134, fault:2853. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1573 -[UP] flip: 153, stem: 19715, fault:2796. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1570 -[UP] flip: 0, stem: 16760, fault:2470. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1561 -[UP] flip: 225, stem: 17354, fault:2337. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1628 -[UP] flip: 367, stem: 19234, fault:2318. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1624 -[UP] flip: 634, stem: 20415, fault:2451. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1652 -[UP] flip: 361, stem: 18629, fault:2261. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1625 -[UP] flip: 271, stem: 20069, fault:2261. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1623 -[UP] flip: 601, stem: 20329, fault:2375. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1630 -[UP] flip: 473, stem: 21449, fault:2375. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1626 -[UP] flip: 0, stem: 21231, fault:2261. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1547 -[UP] flip: 277, stem: 20811, fault:2242. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1546 -[UP] flip: 454, stem: 18818, fault:2185. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1493 -[UP] flip: 0, stem: 19898, fault:2166. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1405 -[UP] flip: 0, stem: 18898, fault:1919. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1308 -[UP] flip: 0, stem: 18696, fault:1995. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1318 -[UP] flip: 149, stem: 19574, fault:1976. flip_cnt: 3, stem_cnt: 1394, fault_cnt:1299 -[UP] flip: 507, stem: 18490, fault:2071. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1369 -[UP] flip: 388, stem: 19193, fault:2147. flip_cnt: 4, stem_cnt: 1395, fault_cnt:1354 -[UP] flip: 577, stem: 20733, fault:2109. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1342 -[UP] flip: 364, stem: 22373, fault:2109. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1337 -[UP] flip: 294, stem: 23893, fault:2109. flip_cnt: 4, stem_cnt: 1395, fault_cnt:1329 -[UP] flip: 376, stem: 25613, fault:2109. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1326 -[UP] flip: 199, stem: 27113, fault:2109. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1323 -[UP] flip: 313, stem: 21265, fault:2337. flip_cnt: 2, stem_cnt: 1383, fault_cnt:1466 -[UP] flip: 529, stem: 20437, fault:2109. flip_cnt: 5, stem_cnt: 1371, fault_cnt:1436 -[UP] flip: 501, stem: 21037, fault:2109. flip_cnt: 4, stem_cnt: 1371, fault_cnt:1439 -[UP] flip: 442, stem: 16428, fault:2185. flip_cnt: 5, stem_cnt: 1380, fault_cnt:1504 -[UP] flip: 466, stem: 16464, fault:2223. flip_cnt: 7, stem_cnt: 1384, fault_cnt:1523 -[UP] flip: 619, stem: 18224, fault:2223. flip_cnt: 7, stem_cnt: 1384, fault_cnt:1516 -[UP] flip: 527, stem: 19964, fault:2185. flip_cnt: 5, stem_cnt: 1384, fault_cnt:1488 -[UP] flip: 140, stem: 16811, fault:2375. flip_cnt: 2, stem_cnt: 1377, fault_cnt:1478 -[UP] flip: 177, stem: 15805, fault:2432. flip_cnt: 2, stem_cnt: 1383, fault_cnt:1494 -[UP] flip: 599, stem: 17485, fault:2432. flip_cnt: 7, stem_cnt: 1383, fault_cnt:1490 -[UP] flip: 0, stem: 19165, fault:2432. flip_cnt: 0, stem_cnt: 1383, fault_cnt:1488 -[UP] flip: 0, stem: 20685, fault:2432. flip_cnt: 0, stem_cnt: 1383, fault_cnt:1488 -[UP] flip: 140, stem: 18320, fault:2508. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1555 -[UP] flip: 103, stem: 20140, fault:2508. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1553 -[UP] flip: 608, stem: 17858, fault:2356. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1554 -[UP] flip: 127, stem: 18079, fault:2375. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1614 -[UP] flip: 576, stem: 19338, fault:2375. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1616 -[UP] flip: 635, stem: 17417, fault:2356. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1593 -[UP] flip: 569, stem: 15775, fault:2147. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1528 -[UP] flip: 388, stem: 16294, fault:2147. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1485 -[UP] flip: 0, stem: 17894, fault:2147. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1479 -[UP] flip: 0, stem: 16036, fault:2128. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1424 -[UP] flip: 738, stem: 17576, fault:2090. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1421 -[UP] flip: 514, stem: 19176, fault:2090. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1417 -[UP] flip: 409, stem: 20615, fault:1976. flip_cnt: 4, stem_cnt: 1393, fault_cnt:1363 -[UP] flip: 0, stem: 21194, fault:1976. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1366 -[UP] flip: 635, stem: 22694, fault:1976. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1364 -[UP] flip: 362, stem: 18377, fault:2128. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1368 -[UP] flip: 0, stem: 19236, fault:2128. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1354 -[UP] flip: 384, stem: 20836, fault:2147. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1388 -[UP] flip: 636, stem: 18477, fault:2318. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1397 -[UP] flip: 193, stem: 20116, fault:2318. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1395 -[UP] flip: 620, stem: 17816, fault:2014. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1316 -[UP] flip: 0, stem: 19356, fault:1976. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1313 -[UP] flip: 0, stem: 18522, fault:2185. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1363 -[UP] flip: 0, stem: 19360, fault:2014. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1293 -[UP] flip: 303, stem: 17967, fault:2090. flip_cnt: 3, stem_cnt: 1381, fault_cnt:1361 -[UP] flip: 618, stem: 18002, fault:2033. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1272 -[UP] flip: 488, stem: 18602, fault:1957. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1236 -[UP] flip: 0, stem: 19683, fault:2014. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1225 -[UP] flip: 554, stem: 18154, fault:2071. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1309 -[UP] flip: 304, stem: 19654, fault:2033. flip_cnt: 3, stem_cnt: 1394, fault_cnt:1306 -[UP] flip: 0, stem: 20717, fault:2128. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1340 -[UP] flip: 386, stem: 19973, fault:2394. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1471 -[UP] flip: 299, stem: 21553, fault:2394. flip_cnt: 3, stem_cnt: 1395, fault_cnt:1462 -[UP] flip: 835, stem: 20737, fault:2394. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1436 -[UP] flip: 1038, stem: 19859, fault:2337. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1448 -[UP] flip: 401, stem: 19962, fault:2223. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1340 -[UP] flip: 414, stem: 21742, fault:2223. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1338 -[UP] flip: 0, stem: 17696, fault:2337. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1441 -[UP] flip: 523, stem: 18480, fault:2280. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1443 -[UP] flip: 212, stem: 19438, fault:2280. flip_cnt: 2, stem_cnt: 1390, fault_cnt:1443 -[UP] flip: 0, stem: 20117, fault:2280. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1443 -[UP] flip: 0, stem: 18244, fault:2071. flip_cnt: 0, stem_cnt: 1384, fault_cnt:1350 -[UP] flip: 416, stem: 17193, fault:2204. flip_cnt: 4, stem_cnt: 1395, fault_cnt:1442 -[UP] flip: 721, stem: 18853, fault:2223. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1444 -[UP] flip: 541, stem: 20453, fault:2223. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1440 -[UP] flip: 667, stem: 17460, fault:2052. flip_cnt: 7, stem_cnt: 1388, fault_cnt:1353 -[UP] flip: 876, stem: 16562, fault:2014. flip_cnt: 7, stem_cnt: 1386, fault_cnt:1355 -[UP] flip: 462, stem: 18018, fault:1957. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1346 -[UP] flip: 715, stem: 19338, fault:1957. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1350 -[UP] flip: 462, stem: 18019, fault:1976. flip_cnt: 4, stem_cnt: 1389, fault_cnt:1291 -[UP] flip: 376, stem: 19722, fault:1976. flip_cnt: 4, stem_cnt: 1386, fault_cnt:1285 -[UP] flip: 658, stem: 17360, fault:1995. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1310 -[UP] flip: 882, stem: 18401, fault:2052. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1318 -[UP] flip: 694, stem: 17781, fault:2052. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1319 -[UP] flip: 0, stem: 19341, fault:2052. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1336 -[UP] flip: 873, stem: 15977, fault:1900. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1265 -[UP] flip: 317, stem: 15637, fault:1919. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1300 -[UP] flip: 726, stem: 14977, fault:2071. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1523 -[UP] flip: 0, stem: 16518, fault:2071. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1502 -[UP] flip: 878, stem: 16316, fault:1976. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1529 -[UP] flip: 442, stem: 16138, fault:2166. flip_cnt: 4, stem_cnt: 1390, fault_cnt:1591 -[UP] flip: 227, stem: 15393, fault:1767. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1396 -[UP] flip: 0, stem: 16312, fault:1995. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1561 -[UP] flip: 0, stem: 17652, fault:1995. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1561 -[UP] flip: 0, stem: 16238, fault:1748. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1439 -[UP] flip: 762, stem: 17978, fault:1748. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1437 -[UP] flip: 768, stem: 14679, fault:1748. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1391 -[UP] flip: 269, stem: 16160, fault:1710. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1374 -[UP] flip: 618, stem: 17640, fault:1691. flip_cnt: 7, stem_cnt: 1388, fault_cnt:1370 -[UP] flip: 694, stem: 16940, fault:1710. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1363 -[UP] flip: 821, stem: 17661, fault:1805. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1426 -[UP] flip: 0, stem: 14980, fault:2090. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1471 -[UP] flip: 754, stem: 16440, fault:2090. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1469 -[UP] flip: 1001, stem: 17780, fault:2033. flip_cnt: 7, stem_cnt: 1388, fault_cnt:1457 -[UP] flip: 464, stem: 16894, fault:2166. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1491 -[UP] flip: 860, stem: 18214, fault:2166. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1488 -[UP] flip: 628, stem: 15589, fault:2071. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1482 -[UP] flip: 680, stem: 16887, fault:2166. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1636 -[UP] flip: 0, stem: 16669, fault:2128. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1602 -[UP] flip: 638, stem: 17730, fault:2109. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1561 -[UP] flip: 587, stem: 19071, fault:2109. flip_cnt: 4, stem_cnt: 1397, fault_cnt:1557 -[UP] flip: 495, stem: 20091, fault:2109. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1551 -[UP] flip: 0, stem: 21412, fault:2109. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1543 -[UP] flip: 0, stem: 18645, fault:2337. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1600 -[UP] flip: 352, stem: 19523, fault:2375. flip_cnt: 3, stem_cnt: 1405, fault_cnt:1630 -[UP] flip: 0, stem: 20623, fault:2375. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1644 -[UP] flip: 1045, stem: 17745, fault:1976. flip_cnt: 6, stem_cnt: 1403, fault_cnt:1491 -[UP] flip: 936, stem: 18325, fault:1976. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1487 -[UP] flip: 299, stem: 19506, fault:1976. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1482 -[UP] flip: 488, stem: 19205, fault:2204. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1527 -[UP] flip: 0, stem: 20625, fault:2204. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1527 -[UP] flip: 926, stem: 20408, fault:2090. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1311 -[UP] flip: 1035, stem: 21728, fault:2090. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1305 -[UP] flip: 0, stem: 23148, fault:1862. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1152 -[UP] flip: 364, stem: 24569, fault:1805. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1149 -[UP] flip: 780, stem: 22872, fault:1805. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1249 -[UP] flip: 1260, stem: 23293, fault:1729. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1196 -[UP] flip: 0, stem: 20308, fault:1862. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1420 -[UP] flip: 0, stem: 20186, fault:2318. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1556 -[UP] flip: 561, stem: 21687, fault:2318. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1554 -[UP] flip: 617, stem: 20816, fault:2052. flip_cnt: 4, stem_cnt: 1392, fault_cnt:1430 -[UP] flip: 0, stem: 21433, fault:2128. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1436 -[UP] flip: 987, stem: 20136, fault:1824. flip_cnt: 6, stem_cnt: 1392, fault_cnt:1271 -[UP] flip: 971, stem: 17179, fault:2470. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1315 -[UP] flip: 0, stem: 18518, fault:2546. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1311 -[UP] flip: 958, stem: 15721, fault:2470. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1186 -[UP] flip: 531, stem: 16358, fault:2261. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1159 -[UP] flip: 0, stem: 14129, fault:2375. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1202 -[UP] flip: 329, stem: 13689, fault:2356. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1322 -[UP] flip: 0, stem: 15249, fault:2356. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1322 -[UP] flip: 0, stem: 16849, fault:2356. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1322 -[UP] flip: 748, stem: 18329, fault:2356. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1320 -[UP] flip: 967, stem: 13316, fault:2147. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1309 -[UP] flip: 0, stem: 14875, fault:2147. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1307 -[UP] flip: 938, stem: 16256, fault:2147. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1303 -[UP] flip: 0, stem: 17337, fault:1919. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1114 -[UP] flip: 1214, stem: 15736, fault:1938. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1140 -[UP] flip: 0, stem: 15832, fault:1957. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1176 -[UP] flip: 0, stem: 15013, fault:2090. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1301 -[UP] flip: 684, stem: 15091, fault:2033. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1292 -[UP] flip: 0, stem: 19312, fault:2014. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1291 -[UP] flip: 270, stem: 19213, fault:1938. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1267 -[UP] flip: 0, stem: 16971, fault:1938. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1241 -[UP] flip: 0, stem: 18511, fault:1938. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1241 -[UP] flip: 0, stem: 14669, fault:1634. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1137 -[UP] flip: 0, stem: 16109, fault:1634. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1137 -[UP] flip: 736, stem: 17549, fault:1615. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1135 -[UP] flip: 0, stem: 19049, fault:1577. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1097 -[UP] flip: 588, stem: 19670, fault:1577. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1089 -[UP] flip: 1073, stem: 16452, fault:2014. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1227 -[UP] flip: 0, stem: 17455, fault:1995. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1220 -[UP] flip: 1302, stem: 16194, fault:1558. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1033 -[UP] flip: 0, stem: 17255, fault:1691. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1071 -[UP] flip: 778, stem: 18535, fault:1691. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1069 -[UP] flip: 0, stem: 19935, fault:1691. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1069 -[UP] flip: 291, stem: 20373, fault:1691. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1067 -[UP] flip: 273, stem: 21493, fault:1691. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1068 -[UP] flip: 685, stem: 22973, fault:1691. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1068 -[UP] flip: 1038, stem: 19550, fault:1463. flip_cnt: 5, stem_cnt: 1398, fault_cnt:999 -[UP] flip: 1219, stem: 18992, fault:1387. flip_cnt: 7, stem_cnt: 1396, fault_cnt:970 -[UP] flip: 0, stem: 18153, fault:2033. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1264 -[UP] flip: 938, stem: 19613, fault:2033. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1261 -[UP] flip: 735, stem: 21133, fault:2033. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1259 -[UP] flip: 616, stem: 16754, fault:1615. flip_cnt: 5, stem_cnt: 1394, fault_cnt:979 -[UP] flip: 1102, stem: 16734, fault:1634. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1018 -[UP] flip: 0, stem: 16693, fault:1729. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1052 -[UP] flip: 1183, stem: 16074, fault:1729. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1021 -[UP] flip: 0, stem: 14992, fault:1691. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1032 -[UP] flip: 1052, stem: 14349, fault:1748. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1086 -[UP] flip: 362, stem: 15728, fault:1748. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1083 -[UP] flip: 563, stem: 15630, fault:1368. flip_cnt: 3, stem_cnt: 1398, fault_cnt:935 -[UP] flip: 903, stem: 16629, fault:1216. flip_cnt: 5, stem_cnt: 1399, fault_cnt:907 -[UP] flip: 1012, stem: 17907, fault:1216. flip_cnt: 5, stem_cnt: 1401, fault_cnt:903 -[UP] flip: 998, stem: 16631, fault:1539. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1050 -[UP] flip: 1161, stem: 17013, fault:1349. flip_cnt: 7, stem_cnt: 1395, fault_cnt:955 -[UP] flip: 1297, stem: 17570, fault:1729. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1070 -[UP] flip: 0, stem: 18989, fault:1729. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1070 -[UP] flip: 343, stem: 20430, fault:1710. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1067 -[UP] flip: 1519, stem: 21571, fault:1710. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1063 -[UP] flip: 0, stem: 21667, fault:1710. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1084 -[UP] flip: 1138, stem: 18469, fault:2185. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1277 -[UP] flip: 225, stem: 20110, fault:2166. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1276 -[UP] flip: 0, stem: 21128, fault:2166. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1277 -[UP] flip: 901, stem: 22090, fault:2147. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1289 -[UP] flip: 1341, stem: 22588, fault:2147. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1307 -[UP] flip: 794, stem: 20952, fault:1957. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1241 -[UP] flip: 938, stem: 22552, fault:1957. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1222 -[UP] flip: 0, stem: 22874, fault:1710. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1079 -[UP] flip: 0, stem: 20356, fault:1786. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1100 -[UP] flip: 313, stem: 19914, fault:1900. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1148 -[UP] flip: 0, stem: 19676, fault:2090. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1274 -[UP] flip: 1055, stem: 19372, fault:2071. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1320 -[UP] flip: 0, stem: 21012, fault:2109. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1342 -[UP] flip: 1046, stem: 21952, fault:2109. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1330 -[UP] flip: 638, stem: 22913, fault:2109. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1327 -[UP] flip: 458, stem: 23875, fault:2090. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1317 -[UP] flip: 1430, stem: 21029, fault:2622. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1582 -[UP] flip: 389, stem: 22370, fault:2622. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1581 -[UP] flip: 1362, stem: 23730, fault:2622. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1577 -[UP] flip: 1173, stem: 23147, fault:2603. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1596 -[UP] flip: 0, stem: 23590, fault:2603. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1594 -[UP] flip: 1092, stem: 24433, fault:2489. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1550 -[UP] flip: 0, stem: 25852, fault:2489. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1550 -[UP] flip: 261, stem: 20748, fault:2508. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1464 -[UP] flip: 679, stem: 21830, fault:2508. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1455 -[UP] flip: 1073, stem: 23169, fault:2489. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1456 -[UP] flip: 0, stem: 22785, fault:2546. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1552 -[UP] flip: 1025, stem: 23666, fault:2660. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1587 -[UP] flip: 676, stem: 24767, fault:2660. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1583 -[UP] flip: 1149, stem: 25348, fault:2660. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1570 -[UP] flip: 1066, stem: 21806, fault:2508. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1565 -[UP] flip: 701, stem: 21886, fault:2318. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1495 -[UP] flip: 667, stem: 22790, fault:2394. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1514 -[UP] flip: 1250, stem: 23593, fault:2394. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1506 -[UP] flip: 958, stem: 25173, fault:2394. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1501 -[UP] flip: 0, stem: 25734, fault:2394. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1497 -[UP] flip: 997, stem: 27032, fault:2394. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1499 -[UP] flip: 1416, stem: 28532, fault:2432. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1533 -[UP] flip: 1282, stem: 28432, fault:2413. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1535 -[UP] flip: 0, stem: 29313, fault:2394. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1532 -[UP] flip: 1264, stem: 32933, fault:2394. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1528 -[UP] flip: 303, stem: 33595, fault:2413. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1524 -[UP] flip: 774, stem: 29296, fault:2736. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1577 -[UP] flip: 372, stem: 28532, fault:2812. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1624 -[UP] flip: 1497, stem: 29652, fault:2812. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1620 -[UP] flip: 419, stem: 30411, fault:2755. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1590 -[UP] flip: 1313, stem: 31193, fault:2755. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1583 -[UP] flip: 693, stem: 32573, fault:2755. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1580 -[UP] flip: 0, stem: 24050, fault:2261. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1316 -[UP] flip: 1181, stem: 25350, fault:2261. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1312 -[UP] flip: 0, stem: 27130, fault:2261. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1310 -[UP] flip: 393, stem: 27331, fault:2261. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1303 -[UP] flip: 1176, stem: 27488, fault:2261. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1298 -[UP] flip: 0, stem: 28848, fault:2261. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1298 -[UP] flip: 0, stem: 28128, fault:2166. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1278 -[UP] flip: 592, stem: 27146, fault:2109. flip_cnt: 3, stem_cnt: 1402, fault_cnt:1259 -[UP] flip: 0, stem: 28746, fault:2299. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1301 -[UP] flip: 367, stem: 29127, fault:2299. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1282 -[UP] flip: 1223, stem: 30547, fault:2698. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1495 -[UP] flip: 0, stem: 30927, fault:2698. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1497 -[UP] flip: 1198, stem: 29467, fault:2679. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1486 -[UP] flip: 628, stem: 30735, fault:2698. flip_cnt: 3, stem_cnt: 1393, fault_cnt:1485 -[UP] flip: 1349, stem: 32375, fault:2679. flip_cnt: 6, stem_cnt: 1393, fault_cnt:1476 -[UP] flip: 1617, stem: 32933, fault:2660. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1513 -[UP] flip: 787, stem: 30032, fault:2850. flip_cnt: 4, stem_cnt: 1396, fault_cnt:1543 -[UP] flip: 0, stem: 27632, fault:3116. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1652 -[UP] flip: 1373, stem: 29219, fault:3097. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1648 -[UP] flip: 1007, stem: 27976, fault:2945. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1580 -[UP] flip: 1321, stem: 29296, fault:2945. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1575 -[UP] flip: 0, stem: 30956, fault:2945. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1575 -[UP] flip: 1860, stem: 26911, fault:3097. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1608 -[UP] flip: 0, stem: 28490, fault:3097. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1608 -[UP] flip: 912, stem: 29731, fault:3097. flip_cnt: 4, stem_cnt: 1397, fault_cnt:1610 -[UP] flip: 0, stem: 29010, fault:2793. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1454 -[UP] flip: 0, stem: 30550, fault:2793. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1454 -[UP] flip: 0, stem: 29874, fault:2907. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1525 -[UP] flip: 1282, stem: 29791, fault:2850. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1501 -[UP] flip: 1346, stem: 30591, fault:2793. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1473 -[UP] flip: 0, stem: 28894, fault:2736. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1475 -[UP] flip: 0, stem: 30554, fault:2736. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1475 -[UP] flip: 1352, stem: 28374, fault:2717. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1479 -[UP] flip: 0, stem: 29954, fault:2850. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1501 -[UP] flip: 1165, stem: 23351, fault:2793. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1481 -[UP] flip: 825, stem: 24649, fault:2717. flip_cnt: 4, stem_cnt: 1399, fault_cnt:1426 -[UP] flip: 1562, stem: 23791, fault:2508. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1427 -[UP] flip: 0, stem: 24691, fault:2508. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1435 -[UP] flip: 0, stem: 26111, fault:2508. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1435 -[UP] flip: 669, stem: 20706, fault:2166. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1440 -[UP] flip: 0, stem: 22066, fault:2185. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1448 -[UP] flip: 998, stem: 17623, fault:2128. flip_cnt: 4, stem_cnt: 1405, fault_cnt:1425 -[UP] flip: 0, stem: 18863, fault:2128. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1428 -[UP] flip: 395, stem: 19984, fault:2109. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1404 -[UP] flip: 1262, stem: 21244, fault:2109. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1401 -[UP] flip: 1217, stem: 18908, fault:1957. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1336 -[UP] flip: 1281, stem: 18290, fault:2071. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1354 -[UP] flip: 433, stem: 16490, fault:1843. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1289 -[UP] flip: 976, stem: 17770, fault:1843. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1285 -[UP] flip: 0, stem: 19170, fault:1843. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1285 -[UP] flip: 1087, stem: 19789, fault:1824. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1279 -[UP] flip: 1281, stem: 21069, fault:1786. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1275 -[UP] flip: 1133, stem: 22288, fault:1729. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1272 -[UP] flip: 1347, stem: 18921, fault:1995. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1331 -[UP] flip: 0, stem: 19719, fault:2071. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1342 -[UP] flip: 0, stem: 20819, fault:2071. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1342 -[UP] flip: 855, stem: 16241, fault:1748. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1160 -[UP] flip: 0, stem: 17802, fault:1748. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1162 -[UP] flip: 887, stem: 17562, fault:1672. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1148 -[UP] flip: 0, stem: 18483, fault:1653. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1132 -[UP] flip: 0, stem: 19742, fault:1653. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1132 -[UP] flip: 0, stem: 20861, fault:1653. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1126 -[UP] flip: 0, stem: 18777, fault:1653. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1142 -[UP] flip: 0, stem: 20118, fault:1653. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1142 -[UP] flip: 945, stem: 21156, fault:1653. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1140 -[UP] flip: 769, stem: 22417, fault:1653. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1138 -[UP] flip: 1382, stem: 20498, fault:1558. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1096 -[UP] flip: 951, stem: 23636, fault:1558. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1098 -[UP] flip: 0, stem: 19950, fault:2185. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1496 -[UP] flip: 1461, stem: 20190, fault:2242. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1536 -[UP] flip: 372, stem: 21269, fault:2242. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1537 -[UP] flip: 1509, stem: 24029, fault:2622. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1674 -[UP] flip: 0, stem: 24849, fault:2622. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1671 -[UP] flip: 463, stem: 26070, fault:2565. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1668 -[UP] flip: 0, stem: 25890, fault:2432. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1633 -[UP] flip: 1282, stem: 27050, fault:2413. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1629 -[UP] flip: 269, stem: 25767, fault:2413. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1601 -[UP] flip: 0, stem: 24967, fault:2603. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1654 -[UP] flip: 497, stem: 25627, fault:2603. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1651 -[UP] flip: 1552, stem: 28547, fault:2603. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1649 -[UP] flip: 820, stem: 29165, fault:2603. flip_cnt: 4, stem_cnt: 1423, fault_cnt:1652 -[UP] flip: 321, stem: 30866, fault:2679. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1709 -[UP] flip: 403, stem: 31486, fault:2679. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1708 -[UP] flip: 1478, stem: 25431, fault:2641. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1718 -[UP] flip: 1216, stem: 21217, fault:2546. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1550 -[UP] flip: 605, stem: 22777, fault:2546. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1538 -[UP] flip: 758, stem: 22797, fault:2546. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1541 -[UP] flip: 482, stem: 20133, fault:2888. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1650 -[UP] flip: 353, stem: 21254, fault:2869. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1647 -[UP] flip: 1741, stem: 22354, fault:2850. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1643 -[UP] flip: 1758, stem: 22654, fault:2812. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1640 -[UP] flip: 473, stem: 23695, fault:2793. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1637 -[UP] flip: 1574, stem: 24775, fault:2793. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1634 -[UP] flip: 561, stem: 25716, fault:2774. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1631 -[UP] flip: 934, stem: 26013, fault:2774. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1634 -[UP] flip: 1166, stem: 25173, fault:2793. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1721 -[UP] flip: 341, stem: 24574, fault:2774. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1701 -[UP] flip: 1291, stem: 25894, fault:2774. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1698 -[UP] flip: 0, stem: 27214, fault:2774. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1698 -[UP] flip: 0, stem: 28414, fault:2774. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1698 -[UP] flip: 958, stem: 29555, fault:2774. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1696 -[UP] flip: 0, stem: 30254, fault:2774. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1691 -[UP] flip: 1226, stem: 23334, fault:2812. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1636 -[UP] flip: 1198, stem: 24312, fault:2755. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1621 -[UP] flip: 1092, stem: 24132, fault:2755. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1618 -[UP] flip: 940, stem: 23393, fault:2812. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1616 -[UP] flip: 605, stem: 24394, fault:2812. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1608 -[UP] flip: 0, stem: 25894, fault:2812. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1608 -[UP] flip: 952, stem: 26574, fault:2831. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1621 -[UP] flip: 1946, stem: 24354, fault:2831. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1621 -[UP] flip: 0, stem: 16838, fault:2774. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1705 -[UP] flip: 574, stem: 18059, fault:2717. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1702 -[UP] flip: 1051, stem: 18939, fault:2717. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1700 -[UP] flip: 1697, stem: 18364, fault:2698. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1669 -[UP] flip: 942, stem: 18559, fault:2679. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1664 -[UP] flip: 488, stem: 20000, fault:2660. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1653 -[UP] flip: 2221, stem: 21460, fault:2622. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1649 -[UP] flip: 917, stem: 22740, fault:2622. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1647 -[UP] flip: 507, stem: 23059, fault:2622. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1634 -[UP] flip: 0, stem: 24299, fault:2622. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1642 -[UP] flip: 2354, stem: 25479, fault:2622. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1638 -[UP] flip: 1059, stem: 26659, fault:2622. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1636 -[UP] flip: 492, stem: 25378, fault:2660. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1645 -[UP] flip: 1412, stem: 26477, fault:2679. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1648 -[UP] flip: 961, stem: 20161, fault:2622. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1579 -[UP] flip: 1988, stem: 21781, fault:2527. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1561 -[UP] flip: 1613, stem: 22862, fault:2527. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1557 -[UP] flip: 0, stem: 23862, fault:2527. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1557 -[UP] flip: 724, stem: 22741, fault:2508. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1554 -[UP] flip: 1002, stem: 23981, fault:2489. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1552 -[UP] flip: 741, stem: 25401, fault:2470. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1548 -[UP] flip: 1420, stem: 25359, fault:2489. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1543 -[UP] flip: 1473, stem: 25740, fault:2489. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1542 -[UP] flip: 877, stem: 27461, fault:2451. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1520 -[UP] flip: 0, stem: 25481, fault:2432. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1393 -[UP] flip: 969, stem: 22820, fault:2413. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1365 -[UP] flip: 432, stem: 24621, fault:2413. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1362 -[UP] flip: 0, stem: 21602, fault:2641. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1517 -[UP] flip: 1119, stem: 22741, fault:2641. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1533 -[UP] flip: 740, stem: 24241, fault:2641. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1514 -[UP] flip: 1616, stem: 19919, fault:2850. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1649 -[UP] flip: 1096, stem: 20938, fault:2831. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1649 -[UP] flip: 393, stem: 20635, fault:2907. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1713 -[UP] flip: 1620, stem: 21915, fault:2888. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1709 -[UP] flip: 855, stem: 23356, fault:2850. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1691 -[UP] flip: 1233, stem: 22977, fault:2603. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1625 -[UP] flip: 1205, stem: 24257, fault:2603. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1623 -[UP] flip: 1403, stem: 25637, fault:2432. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1565 -[UP] flip: 0, stem: 26877, fault:2432. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1561 -[UP] flip: 1586, stem: 26737, fault:2413. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1558 -[UP] flip: 1740, stem: 27157, fault:2375. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1555 -[UP] flip: 1360, stem: 26198, fault:2375. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1546 -[UP] flip: 0, stem: 23299, fault:2299. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1489 -[UP] flip: 2220, stem: 24619, fault:2280. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1485 -[UP] flip: 2155, stem: 23402, fault:2375. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1449 -[UP] flip: 453, stem: 23462, fault:2185. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1360 -[UP] flip: 0, stem: 23944, fault:2109. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1343 -[UP] flip: 0, stem: 25122, fault:2109. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1343 -[UP] flip: 2123, stem: 25181, fault:2109. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1354 -[UP] flip: 445, stem: 26319, fault:2470. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1440 -[UP] flip: 1381, stem: 26421, fault:2489. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1441 -[UP] flip: 1758, stem: 27419, fault:2698. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1500 -[UP] flip: 1704, stem: 28500, fault:2641. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1477 -[UP] flip: 1119, stem: 29920, fault:2641. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1471 -[UP] flip: 1958, stem: 28798, fault:2128. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1329 -[UP] flip: 1088, stem: 28078, fault:2109. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1312 -[UP] flip: 0, stem: 28956, fault:2109. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1327 -[UP] flip: 406, stem: 24696, fault:2090. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1337 -[UP] flip: 435, stem: 24294, fault:2489. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1497 -[UP] flip: 1457, stem: 23074, fault:2489. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1494 -[UP] flip: 1542, stem: 23775, fault:2451. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1501 -[UP] flip: 389, stem: 23956, fault:2451. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1500 -[UP] flip: 1230, stem: 23717, fault:2451. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1497 -[UP] flip: 0, stem: 25117, fault:2451. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1496 -[UP] flip: 0, stem: 26158, fault:2451. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1496 -[UP] flip: 0, stem: 25698, fault:2242. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1458 -[UP] flip: 1849, stem: 26199, fault:2280. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1486 -[UP] flip: 1037, stem: 26479, fault:2242. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1479 -[UP] flip: 550, stem: 27460, fault:2242. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1476 -[UP] flip: 349, stem: 28639, fault:2242. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1473 -[UP] flip: 1639, stem: 30139, fault:2242. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1470 -[UP] flip: 2542, stem: 27961, fault:2451. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1526 -[UP] flip: 0, stem: 29161, fault:2451. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1524 -[UP] flip: 540, stem: 25362, fault:2736. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1594 -[UP] flip: 1208, stem: 26462, fault:2736. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1593 -[UP] flip: 722, stem: 27101, fault:2660. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1571 -[UP] flip: 790, stem: 28462, fault:2660. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1568 -[UP] flip: 483, stem: 29981, fault:2660. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1564 -[UP] flip: 1091, stem: 30461, fault:2679. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1566 -[UP] flip: 2032, stem: 32021, fault:2717. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1568 -[UP] flip: 1142, stem: 33321, fault:2641. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1554 -[UP] flip: 1943, stem: 34361, fault:2641. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1547 -[UP] flip: 1875, stem: 35601, fault:2641. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1543 -[UP] flip: 0, stem: 23555, fault:2090. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1168 -[UP] flip: 0, stem: 25075, fault:2090. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1168 -[UP] flip: 581, stem: 24933, fault:2147. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1206 -[UP] flip: 0, stem: 26193, fault:2147. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1206 -[UP] flip: 458, stem: 27394, fault:2128. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1205 -[UP] flip: 0, stem: 28214, fault:2128. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1205 -[UP] flip: 0, stem: 26213, fault:2394. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1333 -[UP] flip: 360, stem: 27471, fault:2394. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1332 -[UP] flip: 2642, stem: 28312, fault:2356. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1261 -[UP] flip: 0, stem: 29674, fault:2356. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1260 -[UP] flip: 0, stem: 30815, fault:2356. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1260 -[UP] flip: 2206, stem: 30534, fault:2641. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1504 -[UP] flip: 1705, stem: 31133, fault:2603. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1496 -[UP] flip: 0, stem: 31953, fault:2622. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1507 -[UP] flip: 2307, stem: 33393, fault:2584. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1503 -[UP] flip: 2175, stem: 26094, fault:2717. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1636 -[UP] flip: 517, stem: 27555, fault:2717. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1633 -[UP] flip: 2537, stem: 29595, fault:2717. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1629 -[UP] flip: 0, stem: 30154, fault:2850. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1646 -[UP] flip: 1629, stem: 31114, fault:2850. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1642 -[UP] flip: 1197, stem: 32354, fault:2812. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1629 -[UP] flip: 1309, stem: 30896, fault:1653. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1160 -[UP] flip: 1838, stem: 30778, fault:1653. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1149 -[UP] flip: 0, stem: 31339, fault:1634. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1128 -[UP] flip: 0, stem: 22824, fault:2166. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1370 -[UP] flip: 534, stem: 24024, fault:2109. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1367 -[UP] flip: 0, stem: 25525, fault:2109. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1367 -[UP] flip: 0, stem: 25166, fault:2109. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1367 -[UP] flip: 1038, stem: 23485, fault:2109. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1367 -[UP] flip: 1643, stem: 22885, fault:2090. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1376 -[UP] flip: 0, stem: 21304, fault:2432. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1541 -[UP] flip: 1829, stem: 22023, fault:2432. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1543 -[UP] flip: 1875, stem: 22720, fault:2774. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1666 -[UP] flip: 536, stem: 24101, fault:2774. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1671 -[UP] flip: 0, stem: 25041, fault:2774. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1671 -[UP] flip: 849, stem: 17151, fault:3002. flip_cnt: 3, stem_cnt: 1417, fault_cnt:1797 -[UP] flip: 1842, stem: 18391, fault:3002. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1795 -[UP] flip: 1145, stem: 18211, fault:3002. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1762 -[UP] flip: 0, stem: 18669, fault:3078. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1765 -[UP] flip: 1713, stem: 21169, fault:3078. flip_cnt: 4, stem_cnt: 1419, fault_cnt:1763 -[UP] flip: 0, stem: 20550, fault:3040. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1757 -[UP] flip: 708, stem: 21370, fault:3040. flip_cnt: 3, stem_cnt: 1418, fault_cnt:1758 -[UP] flip: 1122, stem: 21493, fault:3059. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1772 -[UP] flip: 1602, stem: 23153, fault:3059. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1770 -[UP] flip: 999, stem: 25132, fault:3059. flip_cnt: 4, stem_cnt: 1416, fault_cnt:1765 -[UP] flip: 480, stem: 26153, fault:3059. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1770 -[UP] flip: 553, stem: 27253, fault:3059. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1769 -[UP] flip: 2211, stem: 27333, fault:3021. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1772 -[UP] flip: 2014, stem: 19212, fault:3154. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1758 -[UP] flip: 483, stem: 19973, fault:3097. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1755 -[UP] flip: 1098, stem: 20993, fault:3097. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1749 -[UP] flip: 481, stem: 21473, fault:3021. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1742 -[UP] flip: 2665, stem: 22653, fault:3021. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1738 -[UP] flip: 634, stem: 22577, fault:3040. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1738 -[UP] flip: 1448, stem: 23317, fault:3040. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1734 -[UP] flip: 1171, stem: 24557, fault:3040. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1733 -[UP] flip: 2313, stem: 25997, fault:3040. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1725 -[UP] flip: 1972, stem: 22034, fault:3363. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1769 -[UP] flip: 812, stem: 23135, fault:3363. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1767 -[UP] flip: 1289, stem: 23354, fault:3363. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1767 -[UP] flip: 665, stem: 23952, fault:3363. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1771 -[UP] flip: 956, stem: 24871, fault:3363. flip_cnt: 3, stem_cnt: 1417, fault_cnt:1771 -[UP] flip: 1465, stem: 25851, fault:3363. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1802 -[UP] flip: 1188, stem: 26551, fault:3363. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1795 -[UP] flip: 620, stem: 26191, fault:3344. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1787 -[UP] flip: 1355, stem: 19237, fault:3325. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1706 -[UP] flip: 521, stem: 20298, fault:3230. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1679 -[UP] flip: 1283, stem: 21639, fault:3230. flip_cnt: 4, stem_cnt: 1409, fault_cnt:1677 -[UP] flip: 517, stem: 22880, fault:3230. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1673 -[UP] flip: 424, stem: 21661, fault:3192. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1663 -[UP] flip: 478, stem: 23382, fault:3192. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1660 -[UP] flip: 1200, stem: 21242, fault:3173. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1643 -[UP] flip: 0, stem: 20840, fault:3173. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1646 -[UP] flip: 1168, stem: 21660, fault:3173. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1648 -[UP] flip: 2353, stem: 22580, fault:3192. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1668 -[UP] flip: 1779, stem: 23620, fault:3135. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1629 -[UP] flip: 0, stem: 23502, fault:3154. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1631 -[UP] flip: 1159, stem: 17825, fault:3059. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1580 -[UP] flip: 0, stem: 19065, fault:3135. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1602 -[UP] flip: 668, stem: 19586, fault:3116. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1603 -[UP] flip: 515, stem: 20405, fault:3116. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1591 -[UP] flip: 0, stem: 21765, fault:3116. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1591 -[UP] flip: 1312, stem: 22945, fault:3078. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1587 -[UP] flip: 426, stem: 24146, fault:3040. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1575 -[UP] flip: 643, stem: 24546, fault:3135. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1626 -[UP] flip: 936, stem: 25706, fault:3154. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1624 -[UP] flip: 523, stem: 18439, fault:2926. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1494 -[UP] flip: 0, stem: 19679, fault:2926. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1494 -[UP] flip: 419, stem: 21480, fault:2926. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1491 -[UP] flip: 2127, stem: 22219, fault:2983. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1524 -[UP] flip: 497, stem: 19139, fault:2850. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1477 -[UP] flip: 1006, stem: 19579, fault:2869. flip_cnt: 3, stem_cnt: 1409, fault_cnt:1478 -[UP] flip: 1035, stem: 20939, fault:2907. flip_cnt: 3, stem_cnt: 1409, fault_cnt:1497 -[UP] flip: 998, stem: 21237, fault:2907. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1496 -[UP] flip: 781, stem: 22057, fault:2907. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1490 -[UP] flip: 0, stem: 23277, fault:2907. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1489 -[UP] flip: 1657, stem: 20322, fault:2831. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1463 -[UP] flip: 2732, stem: 21602, fault:2774. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1460 -[UP] flip: 0, stem: 22722, fault:2774. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1460 -[UP] flip: 1183, stem: 21363, fault:2755. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1457 -[UP] flip: 0, stem: 22522, fault:2755. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1455 -[UP] flip: 904, stem: 23342, fault:2736. flip_cnt: 3, stem_cnt: 1406, fault_cnt:1447 -[UP] flip: 1646, stem: 24602, fault:2736. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1440 -[UP] flip: 1181, stem: 25522, fault:2736. flip_cnt: 3, stem_cnt: 1406, fault_cnt:1439 -[UP] flip: 0, stem: 24846, fault:2717. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1430 -[UP] flip: 1212, stem: 18841, fault:2698. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1417 -[UP] flip: 0, stem: 20041, fault:2698. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1449 -[UP] flip: 952, stem: 21141, fault:2698. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1447 -[UP] flip: 1153, stem: 22742, fault:2717. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1475 -[UP] flip: 1802, stem: 23602, fault:2717. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1469 -[UP] flip: 0, stem: 21285, fault:2660. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1462 -[UP] flip: 1589, stem: 22365, fault:2641. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1458 -[UP] flip: 0, stem: 23765, fault:2641. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1449 -[UP] flip: 2216, stem: 24283, fault:2641. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1452 -[UP] flip: 0, stem: 25302, fault:2641. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1454 -[UP] flip: 2529, stem: 17592, fault:2945. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1734 -[UP] flip: 0, stem: 18672, fault:2888. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1708 -[UP] flip: 0, stem: 18794, fault:2888. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1703 -[UP] flip: 789, stem: 19593, fault:2907. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1699 -[UP] flip: 838, stem: 20793, fault:2907. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1698 -[UP] flip: 0, stem: 22293, fault:2907. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1698 -[UP] flip: 548, stem: 21137, fault:2831. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1679 -[UP] flip: 1603, stem: 22255, fault:2831. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1682 -[UP] flip: 1517, stem: 23433, fault:2869. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1700 -[UP] flip: 2694, stem: 20915, fault:2831. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1716 -[UP] flip: 2374, stem: 22455, fault:2812. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1712 -[UP] flip: 2380, stem: 23495, fault:2793. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1681 -[UP] flip: 595, stem: 24975, fault:2793. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1678 -[UP] flip: 0, stem: 25955, fault:2793. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1678 -[UP] flip: 1029, stem: 27095, fault:2793. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1676 -[UP] flip: 404, stem: 21613, fault:2641. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1609 -[UP] flip: 2867, stem: 20933, fault:2622. flip_cnt: 6, stem_cnt: 1415, fault_cnt:1605 -[UP] flip: 2122, stem: 21853, fault:2584. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1594 -[UP] flip: 675, stem: 23554, fault:2584. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1593 -[UP] flip: 0, stem: 24794, fault:2584. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1593 -[UP] flip: 1136, stem: 25754, fault:2584. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1591 -[UP] flip: 1573, stem: 27635, fault:2584. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1595 -[UP] flip: 1239, stem: 30794, fault:2584. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1594 -[UP] flip: 3058, stem: 31594, fault:2565. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1588 -[UP] flip: 678, stem: 32175, fault:2565. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1583 -[UP] flip: 599, stem: 27396, fault:2489. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1580 -[UP] flip: 2787, stem: 28516, fault:2489. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1576 -[UP] flip: 2665, stem: 29396, fault:2470. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1572 -[UP] flip: 0, stem: 29055, fault:2508. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1588 -[UP] flip: 1220, stem: 29255, fault:2508. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1589 -[UP] flip: 1094, stem: 30335, fault:2508. flip_cnt: 3, stem_cnt: 1413, fault_cnt:1584 -[UP] flip: 1814, stem: 23315, fault:2546. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1597 -[UP] flip: 1487, stem: 24515, fault:2546. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1594 -[UP] flip: 3067, stem: 25155, fault:2584. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1607 -[UP] flip: 1383, stem: 24478, fault:2622. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1601 -[UP] flip: 682, stem: 25839, fault:2413. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1528 -[UP] flip: 2771, stem: 26959, fault:2413. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1524 -[UP] flip: 2441, stem: 27239, fault:2413. flip_cnt: 6, stem_cnt: 1409, fault_cnt:1520 -[UP] flip: 460, stem: 28520, fault:2356. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1513 -[UP] flip: 464, stem: 28478, fault:2337. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1510 -[UP] flip: 0, stem: 27134, fault:2641. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1652 -[UP] flip: 1340, stem: 28034, fault:2641. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1651 -[UP] flip: 1986, stem: 28614, fault:2641. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1647 -[UP] flip: 1376, stem: 29452, fault:2641. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1650 -[UP] flip: 583, stem: 26930, fault:2793. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1712 -[UP] flip: 624, stem: 28030, fault:2793. flip_cnt: 2, stem_cnt: 1418, fault_cnt:1692 -[UP] flip: 1253, stem: 28990, fault:2793. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1704 -[UP] flip: 2496, stem: 30010, fault:2793. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1683 -[UP] flip: 3032, stem: 31210, fault:2793. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1679 -[UP] flip: 2305, stem: 32450, fault:2793. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1677 -[UP] flip: 1836, stem: 31610, fault:2793. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1675 -[UP] flip: 0, stem: 32451, fault:2793. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1675 -[UP] flip: 3015, stem: 33711, fault:2793. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1671 -[UP] flip: 1457, stem: 34450, fault:2793. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1669 -[UP] flip: 1274, stem: 30910, fault:2679. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1714 -[UP] flip: 1810, stem: 30610, fault:2717. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1733 -[UP] flip: 1799, stem: 31010, fault:2717. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1724 -[UP] flip: 2241, stem: 29370, fault:2641. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1652 -[UP] flip: 631, stem: 29092, fault:2641. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1636 -[UP] flip: 791, stem: 30313, fault:2622. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1633 -[UP] flip: 713, stem: 30715, fault:2622. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1627 -[UP] flip: 436, stem: 27975, fault:2546. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1599 -[UP] flip: 0, stem: 28235, fault:2489. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1579 -[UP] flip: 2587, stem: 19838, fault:2413. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1488 -[UP] flip: 2181, stem: 21097, fault:2413. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1486 -[UP] flip: 1708, stem: 22497, fault:2413. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1484 -[UP] flip: 0, stem: 23058, fault:2413. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1466 -[UP] flip: 2427, stem: 24198, fault:2375. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1463 -[UP] flip: 2478, stem: 25398, fault:2375. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1461 -[UP] flip: 2352, stem: 26237, fault:2375. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1457 -[UP] flip: 764, stem: 27099, fault:2375. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1451 -[UP] flip: 2221, stem: 24139, fault:2261. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1417 -[UP] flip: 1867, stem: 25299, fault:2318. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1426 -[UP] flip: 3055, stem: 25999, fault:2033. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1281 -[UP] flip: 1417, stem: 22617, fault:1976. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1265 -[UP] flip: 2356, stem: 23316, fault:1976. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1268 -[UP] flip: 0, stem: 24596, fault:1976. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1278 -[UP] flip: 695, stem: 25158, fault:1976. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1270 -[UP] flip: 1845, stem: 19837, fault:1938. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1396 -[UP] flip: 2526, stem: 16015, fault:2394. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1588 -[UP] flip: 2382, stem: 17315, fault:2394. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1585 -[UP] flip: 2338, stem: 18655, fault:2394. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1583 -[UP] flip: 487, stem: 18044, fault:2413. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1593 -[UP] flip: 1432, stem: 19605, fault:2413. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1591 -[UP] flip: 2147, stem: 21124, fault:2375. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1605 -[UP] flip: 1814, stem: 22424, fault:2375. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1602 -[UP] flip: 1510, stem: 23622, fault:2375. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1598 -[UP] flip: 813, stem: 25024, fault:2375. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1600 -[UP] flip: 1884, stem: 25641, fault:2451. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1676 -[UP] flip: 2505, stem: 26901, fault:2451. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1672 -[UP] flip: 2336, stem: 28201, fault:2432. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1669 -[UP] flip: 1723, stem: 29621, fault:2394. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1657 -[UP] flip: 2442, stem: 26260, fault:2337. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1654 -[UP] flip: 1923, stem: 27199, fault:2356. flip_cnt: 4, stem_cnt: 1409, fault_cnt:1656 -[UP] flip: 1326, stem: 28259, fault:2356. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1685 -[UP] flip: 486, stem: 28399, fault:2356. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1641 -[UP] flip: 716, stem: 29760, fault:2356. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1638 -[UP] flip: 3336, stem: 31160, fault:2318. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1634 -[UP] flip: 1538, stem: 33660, fault:2318. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1638 -[UP] flip: 2965, stem: 35300, fault:2318. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1619 -[UP] flip: 0, stem: 36201, fault:2318. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1617 -[UP] flip: 1011, stem: 21906, fault:2147. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1582 -[UP] flip: 0, stem: 23686, fault:2166. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1591 -[UP] flip: 1736, stem: 25306, fault:2166. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1587 -[UP] flip: 0, stem: 25642, fault:2128. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1568 -[UP] flip: 1212, stem: 26944, fault:2128. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1566 -[UP] flip: 668, stem: 28284, fault:2128. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1563 -[UP] flip: 1107, stem: 29845, fault:2147. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1575 -[UP] flip: 1817, stem: 26825, fault:2052. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1440 -[UP] flip: 0, stem: 25666, fault:2033. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1360 -[UP] flip: 1576, stem: 26846, fault:2033. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1356 -[UP] flip: 2922, stem: 28106, fault:1900. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1300 -[UP] flip: 664, stem: 27406, fault:1919. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1345 -[UP] flip: 410, stem: 28726, fault:1919. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1344 -[UP] flip: 934, stem: 29986, fault:1919. flip_cnt: 3, stem_cnt: 1402, fault_cnt:1341 -[UP] flip: 2754, stem: 30424, fault:1919. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1322 -[UP] flip: 0, stem: 31344, fault:1919. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1322 -[UP] flip: 649, stem: 27023, fault:2090. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1467 -[UP] flip: 0, stem: 28463, fault:2223. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1485 -[UP] flip: 2134, stem: 29104, fault:2223. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1478 -[UP] flip: 2268, stem: 29322, fault:2261. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1489 -[UP] flip: 2730, stem: 29943, fault:2261. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1483 -[UP] flip: 2336, stem: 30441, fault:2261. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1479 -[UP] flip: 0, stem: 31921, fault:2413. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1507 -[UP] flip: 416, stem: 32621, fault:2394. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1504 -[UP] flip: 2623, stem: 33841, fault:2394. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1491 -[UP] flip: 725, stem: 34361, fault:2413. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1489 -[UP] flip: 0, stem: 34941, fault:2413. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1490 -[UP] flip: 2343, stem: 36581, fault:2413. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1488 -[UP] flip: 1138, stem: 35722, fault:2527. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1494 -[UP] flip: 2574, stem: 36382, fault:2546. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1494 -[UP] flip: 1081, stem: 31884, fault:2470. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1430 -[UP] flip: 2840, stem: 33064, fault:2451. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1426 -[UP] flip: 1487, stem: 28581, fault:2584. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1459 -[UP] flip: 1456, stem: 26978, fault:2603. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1545 -[UP] flip: 2344, stem: 28018, fault:2603. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1565 -[UP] flip: 2001, stem: 26135, fault:2660. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1669 -[UP] flip: 0, stem: 27335, fault:2660. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1677 -[UP] flip: 3457, stem: 28275, fault:2622. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1673 -[UP] flip: 1503, stem: 28634, fault:2641. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1666 -[UP] flip: 1148, stem: 29954, fault:2641. flip_cnt: 3, stem_cnt: 1414, fault_cnt:1669 -[UP] flip: 1466, stem: 31355, fault:2641. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1667 -[UP] flip: 2514, stem: 25954, fault:2793. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1685 -[UP] flip: 714, stem: 27415, fault:2793. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1682 -[UP] flip: 1208, stem: 27337, fault:2755. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1620 -[UP] flip: 1286, stem: 28497, fault:2755. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1618 -[UP] flip: 0, stem: 27017, fault:2717. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1585 -[UP] flip: 0, stem: 27877, fault:2717. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1585 -[UP] flip: 1037, stem: 27397, fault:2698. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1526 -[UP] flip: 363, stem: 28316, fault:2698. flip_cnt: 1, stem_cnt: 1412, fault_cnt:1529 -[UP] flip: 0, stem: 29976, fault:2698. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1530 -[UP] flip: 2529, stem: 29897, fault:2698. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1537 -[UP] flip: 1340, stem: 31258, fault:2698. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1535 -[UP] flip: 627, stem: 32419, fault:2698. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1529 -[UP] flip: 2831, stem: 32879, fault:2679. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1527 -[UP] flip: 3122, stem: 33121, fault:2679. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1521 -[UP] flip: 2607, stem: 27980, fault:2584. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1490 -[UP] flip: 0, stem: 28000, fault:2584. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1484 -[UP] flip: 1917, stem: 29080, fault:2565. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1481 -[UP] flip: 1991, stem: 28758, fault:2565. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1457 -[UP] flip: 0, stem: 29198, fault:2527. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1453 -[UP] flip: 2039, stem: 29437, fault:2527. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1447 -[UP] flip: 0, stem: 29295, fault:2527. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1455 -[UP] flip: 516, stem: 27115, fault:2508. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1447 -[UP] flip: 1951, stem: 28096, fault:2508. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1438 -[UP] flip: 2716, stem: 27916, fault:2660. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1584 -[UP] flip: 532, stem: 27276, fault:2660. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1583 -[UP] flip: 3025, stem: 28716, fault:2660. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1579 -[UP] flip: 833, stem: 29955, fault:2717. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1581 -[UP] flip: 972, stem: 30795, fault:2812. flip_cnt: 3, stem_cnt: 1413, fault_cnt:1599 -[UP] flip: 2604, stem: 32115, fault:2812. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1595 -[UP] flip: 0, stem: 26377, fault:2869. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1676 -[UP] flip: 674, stem: 26121, fault:2831. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1660 -[UP] flip: 3231, stem: 28101, fault:2831. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1656 -[UP] flip: 0, stem: 28084, fault:2774. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1626 -[UP] flip: 0, stem: 28502, fault:2603. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1584 -[UP] flip: 722, stem: 30142, fault:2603. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1583 -[UP] flip: 2016, stem: 30963, fault:2584. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1576 -[UP] flip: 1832, stem: 31322, fault:2565. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1535 -[UP] flip: 679, stem: 32662, fault:2565. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1528 -[UP] flip: 0, stem: 32221, fault:2755. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1565 -[UP] flip: 609, stem: 33362, fault:2755. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1562 -[UP] flip: 2382, stem: 32941, fault:2755. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1561 -[UP] flip: 2435, stem: 32642, fault:2736. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1559 -[UP] flip: 0, stem: 33202, fault:2736. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1569 -[UP] flip: 0, stem: 32522, fault:2736. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1556 -[UP] flip: 2465, stem: 33022, fault:2736. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1552 -[UP] flip: 1747, stem: 33262, fault:2489. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1388 -[UP] flip: 2457, stem: 31841, fault:2603. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1430 -[UP] flip: 1395, stem: 32981, fault:2622. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1428 -[UP] flip: 0, stem: 28079, fault:2869. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1536 -[UP] flip: 0, stem: 29419, fault:2869. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1536 -[UP] flip: 2772, stem: 30619, fault:2869. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1533 -[UP] flip: 527, stem: 31580, fault:2869. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1530 -[UP] flip: 696, stem: 33260, fault:2869. flip_cnt: 3, stem_cnt: 1408, fault_cnt:1529 -[UP] flip: 2648, stem: 34300, fault:2869. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1527 -[UP] flip: 1510, stem: 33842, fault:2831. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1522 -[UP] flip: 553, stem: 34942, fault:2812. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1517 -[UP] flip: 3485, stem: 35820, fault:2812. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1540 -[UP] flip: 2856, stem: 37100, fault:2812. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1541 -[UP] flip: 2737, stem: 38560, fault:2774. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1531 -[UP] flip: 3339, stem: 39700, fault:2774. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1527 -[UP] flip: 746, stem: 41401, fault:2717. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1524 -[UP] flip: 0, stem: 40500, fault:2736. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1578 -[UP] flip: 2611, stem: 41340, fault:2717. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1579 -[UP] flip: 2673, stem: 37960, fault:2698. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1551 -[UP] flip: 891, stem: 38700, fault:2660. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1538 -[UP] flip: 1851, stem: 39900, fault:2641. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1533 -[UP] flip: 0, stem: 34138, fault:2451. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1533 -[UP] flip: 1097, stem: 35399, fault:2451. flip_cnt: 4, stem_cnt: 1409, fault_cnt:1531 -[UP] flip: 0, stem: 34503, fault:2337. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1384 -[UP] flip: 0, stem: 35984, fault:2337. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1383 -[UP] flip: 1794, stem: 37105, fault:2318. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1381 -[UP] flip: 1281, stem: 35928, fault:2261. flip_cnt: 3, stem_cnt: 1400, fault_cnt:1355 -[UP] flip: 2525, stem: 34236, fault:2337. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1343 -[UP] flip: 3074, stem: 33455, fault:2451. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1476 -[UP] flip: 1650, stem: 32135, fault:2432. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1471 -[UP] flip: 1667, stem: 33357, fault:2413. flip_cnt: 4, stem_cnt: 1391, fault_cnt:1428 -[UP] flip: 0, stem: 29134, fault:2451. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1418 -[UP] flip: 1896, stem: 29372, fault:2451. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1416 -[UP] flip: 2041, stem: 30231, fault:2451. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1416 -[UP] flip: 2223, stem: 28868, fault:2527. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1415 -[UP] flip: 0, stem: 30648, fault:2527. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1413 -[UP] flip: 0, stem: 30731, fault:2546. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1416 -[UP] flip: 2014, stem: 31434, fault:2546. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1405 -[UP] flip: 2498, stem: 31515, fault:2527. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1402 -[UP] flip: 539, stem: 33115, fault:2508. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1390 -[UP] flip: 1468, stem: 29353, fault:2660. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1448 -[UP] flip: 2471, stem: 31013, fault:2964. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1593 -[UP] flip: 2833, stem: 30670, fault:2945. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1578 -[UP] flip: 3834, stem: 28731, fault:2869. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1544 -[UP] flip: 1643, stem: 28550, fault:2869. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1554 -[UP] flip: 2573, stem: 30330, fault:2717. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1522 -[UP] flip: 3065, stem: 27307, fault:2717. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1524 -[UP] flip: 1405, stem: 28369, fault:2717. flip_cnt: 4, stem_cnt: 1399, fault_cnt:1513 -[UP] flip: 3490, stem: 29449, fault:2717. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1509 -[UP] flip: 1654, stem: 30466, fault:2736. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1525 -[UP] flip: 2482, stem: 23904, fault:2888. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1668 -[UP] flip: 1077, stem: 25345, fault:2831. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1665 -[UP] flip: 1216, stem: 26685, fault:2831. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1663 -[UP] flip: 968, stem: 27825, fault:2831. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1663 -[UP] flip: 0, stem: 28364, fault:2831. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1673 -[UP] flip: 2174, stem: 29744, fault:2831. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1671 -[UP] flip: 2743, stem: 30664, fault:2831. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1668 -[UP] flip: 3597, stem: 30222, fault:2793. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1607 -[UP] flip: 2790, stem: 31602, fault:2812. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1606 -[UP] flip: 2504, stem: 27302, fault:2717. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1538 -[UP] flip: 1639, stem: 28600, fault:2736. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1554 -[UP] flip: 4108, stem: 29680, fault:2698. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1553 -[UP] flip: 2229, stem: 30540, fault:2698. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1551 -[UP] flip: 652, stem: 31561, fault:2698. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1548 -[UP] flip: 0, stem: 32721, fault:2698. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1548 -[UP] flip: 688, stem: 30785, fault:2717. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1580 -[UP] flip: 600, stem: 31248, fault:2717. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1572 -[UP] flip: 3700, stem: 32948, fault:2717. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1568 -[UP] flip: 1198, stem: 34228, fault:2717. flip_cnt: 3, stem_cnt: 1400, fault_cnt:1566 -[UP] flip: 2551, stem: 34627, fault:2717. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1568 -[UP] flip: 0, stem: 35587, fault:2584. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1553 -[UP] flip: 3710, stem: 34287, fault:2584. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1553 -[UP] flip: 0, stem: 35047, fault:2584. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1553 -[UP] flip: 0, stem: 36387, fault:2584. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1553 -[UP] flip: 1753, stem: 26129, fault:2432. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1345 -[UP] flip: 1997, stem: 26388, fault:2565. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1373 -[UP] flip: 1533, stem: 27729, fault:2489. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1359 -[UP] flip: 3473, stem: 29749, fault:2489. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1353 -[UP] flip: 0, stem: 31209, fault:2489. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1353 -[UP] flip: 3600, stem: 32008, fault:2489. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1350 -[UP] flip: 926, stem: 33589, fault:2432. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1347 -[UP] flip: 1728, stem: 30006, fault:2527. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1332 -[UP] flip: 1416, stem: 30986, fault:2527. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1330 -[UP] flip: 0, stem: 26802, fault:2641. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1493 -[UP] flip: 1737, stem: 28162, fault:2641. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1491 -[UP] flip: 818, stem: 29983, fault:2641. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1489 -[UP] flip: 0, stem: 27844, fault:2660. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1471 -[UP] flip: 0, stem: 29225, fault:2660. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1471 -[UP] flip: 2205, stem: 30625, fault:2945. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1521 -[UP] flip: 0, stem: 32205, fault:2945. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1519 -[UP] flip: 1219, stem: 33425, fault:2907. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1516 -[UP] flip: 0, stem: 34206, fault:2907. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1518 -[UP] flip: 1815, stem: 35546, fault:2907. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1515 -[UP] flip: 0, stem: 35186, fault:2926. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1534 -[UP] flip: 0, stem: 36326, fault:2926. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1534 -[UP] flip: 1258, stem: 37647, fault:2926. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1532 -[UP] flip: 0, stem: 34987, fault:2812. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1446 -[UP] flip: 0, stem: 36607, fault:2812. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1446 -[UP] flip: 0, stem: 36128, fault:2831. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1466 -[UP] flip: 0, stem: 37048, fault:2831. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1466 -[UP] flip: 715, stem: 37049, fault:2793. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1461 -[UP] flip: 1910, stem: 34053, fault:2565. flip_cnt: 4, stem_cnt: 1395, fault_cnt:1406 -[UP] flip: 3695, stem: 32493, fault:2375. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1392 -[UP] flip: 796, stem: 33694, fault:2375. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1391 -[UP] flip: 2930, stem: 32852, fault:2375. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1392 -[UP] flip: 688, stem: 32952, fault:2375. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1391 -[UP] flip: 0, stem: 32950, fault:2394. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1393 -[UP] flip: 0, stem: 34470, fault:2394. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1398 -[UP] flip: 751, stem: 33011, fault:2394. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1382 -[UP] flip: 0, stem: 34530, fault:2394. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1382 -[UP] flip: 1146, stem: 31148, fault:2584. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1528 -[UP] flip: 747, stem: 32708, fault:2565. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1492 -[UP] flip: 0, stem: 29105, fault:2546. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1433 -[UP] flip: 1773, stem: 24666, fault:2432. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1313 -[UP] flip: 1495, stem: 26267, fault:2432. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1311 -[UP] flip: 0, stem: 27608, fault:2432. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1308 -[UP] flip: 3084, stem: 28868, fault:2394. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1304 -[UP] flip: 1793, stem: 29708, fault:2394. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1297 -[UP] flip: 0, stem: 30969, fault:2394. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1297 -[UP] flip: 820, stem: 27527, fault:2280. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1334 -[UP] flip: 1671, stem: 29067, fault:2280. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1330 -[UP] flip: 0, stem: 30426, fault:2280. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1328 -[UP] flip: 1782, stem: 31386, fault:2280. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1329 -[UP] flip: 2180, stem: 28451, fault:2451. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1366 -[UP] flip: 0, stem: 25596, fault:2128. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1182 -[UP] flip: 3300, stem: 27016, fault:2128. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1179 -[UP] flip: 1821, stem: 27617, fault:2109. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1165 -[UP] flip: 3198, stem: 27278, fault:2109. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1147 -[UP] flip: 3172, stem: 24948, fault:2337. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1271 -[UP] flip: 1631, stem: 26167, fault:2337. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1270 -[UP] flip: 822, stem: 27729, fault:2318. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1270 -[UP] flip: 1828, stem: 28389, fault:2318. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1265 -[UP] flip: 1254, stem: 27528, fault:2166. flip_cnt: 3, stem_cnt: 1400, fault_cnt:1220 -[UP] flip: 3119, stem: 26747, fault:2166. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1217 -[UP] flip: 0, stem: 28227, fault:2166. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1215 -[UP] flip: 0, stem: 23709, fault:1957. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1101 -[UP] flip: 2988, stem: 24808, fault:1957. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1103 -[UP] flip: 0, stem: 24986, fault:1881. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1100 -[UP] flip: 1648, stem: 26267, fault:1881. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1098 -[UP] flip: 674, stem: 25349, fault:1615. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1026 -[UP] flip: 765, stem: 25389, fault:1615. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1000 -[UP] flip: 3929, stem: 25128, fault:1691. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1068 -[UP] flip: 2362, stem: 26568, fault:1577. flip_cnt: 5, stem_cnt: 1400, fault_cnt:995 -[UP] flip: 1550, stem: 26046, fault:1748. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1113 -[UP] flip: 664, stem: 24171, fault:1786. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1122 -[UP] flip: 4126, stem: 18233, fault:2109. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1157 -[UP] flip: 1876, stem: 17675, fault:2242. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1334 -[UP] flip: 3046, stem: 18993, fault:2242. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1336 -[UP] flip: 846, stem: 20673, fault:2242. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1335 -[UP] flip: 3890, stem: 22172, fault:2204. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1329 -[UP] flip: 0, stem: 22831, fault:2375. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1409 -[UP] flip: 2651, stem: 24390, fault:2394. flip_cnt: 4, stem_cnt: 1398, fault_cnt:1411 -[UP] flip: 0, stem: 24650, fault:2375. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1416 -[UP] flip: 0, stem: 26070, fault:2375. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1416 -[UP] flip: 2378, stem: 26669, fault:2375. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1407 -[UP] flip: 773, stem: 27387, fault:2470. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1420 -[UP] flip: 3089, stem: 28085, fault:2546. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1443 -[UP] flip: 0, stem: 29164, fault:2565. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1458 -[UP] flip: 4174, stem: 28583, fault:2584. flip_cnt: 6, stem_cnt: 1405, fault_cnt:1451 -[UP] flip: 3150, stem: 29664, fault:2603. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1447 -[UP] flip: 768, stem: 21867, fault:2109. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1157 -[UP] flip: 0, stem: 20191, fault:2204. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1230 -[UP] flip: 0, stem: 21069, fault:2204. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1230 -[UP] flip: 0, stem: 21347, fault:2090. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1180 -[UP] flip: 3464, stem: 21547, fault:2071. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1174 -[UP] flip: 3789, stem: 18489, fault:2014. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1133 -[UP] flip: 2434, stem: 19849, fault:2014. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1129 -[UP] flip: 706, stem: 20907, fault:2014. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1130 -[UP] flip: 3955, stem: 20306, fault:2432. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1306 -[UP] flip: 1066, stem: 21265, fault:2413. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1306 -[UP] flip: 1627, stem: 22425, fault:2413. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1299 -[UP] flip: 0, stem: 23465, fault:2090. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1131 -[UP] flip: 0, stem: 22263, fault:2090. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1132 -[UP] flip: 2538, stem: 23563, fault:2090. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1130 -[UP] flip: 2223, stem: 22381, fault:2242. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1294 -[UP] flip: 2619, stem: 23581, fault:2242. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1290 -[UP] flip: 0, stem: 23722, fault:2698. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1453 -[UP] flip: 4509, stem: 25062, fault:2698. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1449 -[UP] flip: 0, stem: 22261, fault:2489. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1276 -[UP] flip: 1680, stem: 21462, fault:2470. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1348 -[UP] flip: 3476, stem: 22863, fault:2470. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1354 -[UP] flip: 0, stem: 22763, fault:2470. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1354 -[UP] flip: 2942, stem: 20742, fault:2489. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1380 -[UP] flip: 2209, stem: 19983, fault:2375. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1343 -[UP] flip: 2379, stem: 20623, fault:2375. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1329 -[UP] flip: 0, stem: 18890, fault:2375. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1307 -[UP] flip: 714, stem: 19571, fault:2128. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1137 -[UP] flip: 0, stem: 20831, fault:2128. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1137 -[UP] flip: 0, stem: 22331, fault:2128. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1137 -[UP] flip: 2519, stem: 23409, fault:2128. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1139 -[UP] flip: 961, stem: 23391, fault:2147. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1147 -[UP] flip: 1543, stem: 20648, fault:2147. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1186 -[UP] flip: 891, stem: 22149, fault:2090. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1182 -[UP] flip: 2386, stem: 22330, fault:2071. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1178 -[UP] flip: 0, stem: 22392, fault:2128. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1185 -[UP] flip: 3188, stem: 24152, fault:2128. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1183 -[UP] flip: 3250, stem: 25451, fault:2128. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1177 -[UP] flip: 1293, stem: 26370, fault:2128. flip_cnt: 3, stem_cnt: 1398, fault_cnt:1174 -[UP] flip: 0, stem: 22730, fault:2071. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1191 -[UP] flip: 2216, stem: 23432, fault:2052. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1177 -[UP] flip: 2477, stem: 25252, fault:2052. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1169 -[UP] flip: 0, stem: 22272, fault:2033. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1244 -[UP] flip: 4560, stem: 23312, fault:2014. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1233 -[UP] flip: 0, stem: 24852, fault:2014. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1233 -[UP] flip: 0, stem: 25771, fault:2014. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1225 -[UP] flip: 0, stem: 26013, fault:1919. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1210 -[UP] flip: 3575, stem: 26994, fault:1919. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1204 -[UP] flip: 3339, stem: 28012, fault:1919. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1200 -[UP] flip: 2604, stem: 22393, fault:2090. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1425 -[UP] flip: 0, stem: 24033, fault:2033. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1328 -[UP] flip: 1647, stem: 24031, fault:2014. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1320 -[UP] flip: 0, stem: 24831, fault:2071. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1412 -[UP] flip: 2268, stem: 25971, fault:2223. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1441 -[UP] flip: 2110, stem: 27289, fault:2242. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1442 -[UP] flip: 1244, stem: 24512, fault:2299. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1480 -[UP] flip: 3904, stem: 25692, fault:2299. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1476 -[UP] flip: 2477, stem: 27073, fault:2299. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1474 -[UP] flip: 0, stem: 28313, fault:2299. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1467 -[UP] flip: 1645, stem: 28552, fault:2299. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1468 -[UP] flip: 2566, stem: 28713, fault:2299. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1459 -[UP] flip: 1752, stem: 30053, fault:2242. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1448 -[UP] flip: 1923, stem: 31171, fault:2242. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1445 -[UP] flip: 0, stem: 31951, fault:2242. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1455 -[UP] flip: 737, stem: 29590, fault:2299. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1489 -[UP] flip: 0, stem: 23816, fault:2223. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1409 -[UP] flip: 4583, stem: 25416, fault:2223. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1405 -[UP] flip: 0, stem: 25258, fault:2166. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1394 -[UP] flip: 4063, stem: 25339, fault:2166. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1420 -[UP] flip: 4170, stem: 25817, fault:2223. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1433 -[UP] flip: 3792, stem: 23318, fault:2299. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1421 -[UP] flip: 0, stem: 24838, fault:2299. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1421 -[UP] flip: 1849, stem: 26079, fault:2280. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1413 -[UP] flip: 0, stem: 27600, fault:2261. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1401 -[UP] flip: 1311, stem: 27479, fault:2280. flip_cnt: 3, stem_cnt: 1389, fault_cnt:1453 -[UP] flip: 1145, stem: 28560, fault:2280. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1452 -[UP] flip: 0, stem: 30380, fault:2280. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1452 -[UP] flip: 3616, stem: 27260, fault:1957. flip_cnt: 7, stem_cnt: 1388, fault_cnt:1212 -[UP] flip: 865, stem: 27402, fault:1957. flip_cnt: 2, stem_cnt: 1386, fault_cnt:1212 -[UP] flip: 0, stem: 26724, fault:1957. flip_cnt: 0, stem_cnt: 1384, fault_cnt:1222 -[UP] flip: 3449, stem: 26804, fault:1957. flip_cnt: 5, stem_cnt: 1384, fault_cnt:1218 -[UP] flip: 2030, stem: 27403, fault:1957. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1213 -[UP] flip: 2999, stem: 19928, fault:2394. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1423 -[UP] flip: 0, stem: 21449, fault:2394. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1423 -[UP] flip: 2564, stem: 22809, fault:2375. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1419 -[UP] flip: 0, stem: 24269, fault:2375. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1418 -[UP] flip: 0, stem: 25429, fault:2375. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1418 -[UP] flip: 4709, stem: 26889, fault:2356. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1414 -[UP] flip: 0, stem: 27150, fault:2318. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1407 -[UP] flip: 3366, stem: 28010, fault:2299. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1398 -[UP] flip: 2310, stem: 28566, fault:2356. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1418 -[UP] flip: 3587, stem: 29524, fault:2356. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1421 -[UP] flip: 4309, stem: 31164, fault:2356. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1420 -[UP] flip: 2056, stem: 31903, fault:2356. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1423 -[UP] flip: 1941, stem: 31479, fault:2394. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1507 -[UP] flip: 4739, stem: 32299, fault:2394. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1503 -[UP] flip: 0, stem: 32900, fault:2375. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1468 -[UP] flip: 0, stem: 33079, fault:2413. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1475 -[UP] flip: 1579, stem: 33620, fault:2413. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1475 -[UP] flip: 852, stem: 34840, fault:2413. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1504 -[UP] flip: 3505, stem: 32640, fault:2375. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1485 -[UP] flip: 735, stem: 26709, fault:2185. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1424 -[UP] flip: 3007, stem: 28569, fault:2185. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1420 -[UP] flip: 616, stem: 30009, fault:2185. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1417 -[UP] flip: 855, stem: 23855, fault:2223. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1440 -[UP] flip: 1898, stem: 23128, fault:2299. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1460 -[UP] flip: 2370, stem: 24128, fault:2166. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1392 -[UP] flip: 0, stem: 25527, fault:2052. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1337 -[UP] flip: 1414, stem: 20202, fault:1862. flip_cnt: 3, stem_cnt: 1406, fault_cnt:1290 -[UP] flip: 0, stem: 21622, fault:1862. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1290 -[UP] flip: 4349, stem: 22822, fault:1881. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1291 -[UP] flip: 2703, stem: 20559, fault:2299. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1422 -[UP] flip: 3763, stem: 21179, fault:2223. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1416 -[UP] flip: 0, stem: 24878, fault:2223. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1410 -[UP] flip: 822, stem: 23158, fault:2204. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1597 -[UP] flip: 2109, stem: 24158, fault:2261. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1608 -[UP] flip: 1255, stem: 25238, fault:2204. flip_cnt: 3, stem_cnt: 1410, fault_cnt:1597 -[UP] flip: 3144, stem: 26277, fault:2204. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1600 -[UP] flip: 1518, stem: 27836, fault:2356. flip_cnt: 3, stem_cnt: 1412, fault_cnt:1639 -[UP] flip: 0, stem: 28815, fault:2356. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1634 -[UP] flip: 3161, stem: 21497, fault:2299. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1637 -[UP] flip: 3558, stem: 21258, fault:2261. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1626 -[UP] flip: 3781, stem: 21999, fault:2166. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1598 -[UP] flip: 1738, stem: 23760, fault:2166. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1596 -[UP] flip: 0, stem: 23159, fault:2109. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1572 -[UP] flip: 3974, stem: 22837, fault:2185. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1567 -[UP] flip: 3575, stem: 21738, fault:2204. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1563 -[UP] flip: 865, stem: 22142, fault:2204. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1550 -[UP] flip: 2719, stem: 23081, fault:2204. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1553 -[UP] flip: 2417, stem: 25783, fault:2147. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1549 -[UP] flip: 3217, stem: 25124, fault:2128. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1509 -[UP] flip: 0, stem: 25585, fault:2090. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1506 -[UP] flip: 3391, stem: 26846, fault:2090. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1502 -[UP] flip: 1066, stem: 28266, fault:2090. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1498 -[UP] flip: 1495, stem: 27002, fault:2109. flip_cnt: 3, stem_cnt: 1406, fault_cnt:1527 -[UP] flip: 3768, stem: 21361, fault:1976. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1513 -[UP] flip: 2994, stem: 22401, fault:1957. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1507 -[UP] flip: 2382, stem: 23441, fault:1957. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1505 -[UP] flip: 729, stem: 21923, fault:2375. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1650 -[UP] flip: 2549, stem: 23563, fault:2375. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1646 -[UP] flip: 1925, stem: 24984, fault:2375. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1644 -[UP] flip: 0, stem: 26164, fault:2375. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1641 -[UP] flip: 2663, stem: 27504, fault:2375. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1637 -[UP] flip: 2341, stem: 24544, fault:2451. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1496 -[UP] flip: 1105, stem: 24303, fault:2527. flip_cnt: 3, stem_cnt: 1405, fault_cnt:1492 -[UP] flip: 1191, stem: 25642, fault:2527. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1491 -[UP] flip: 2435, stem: 26126, fault:2527. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1468 -[UP] flip: 0, stem: 27447, fault:2489. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1455 -[UP] flip: 967, stem: 28707, fault:2489. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1452 -[UP] flip: 0, stem: 30007, fault:2489. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1452 -[UP] flip: 0, stem: 22398, fault:2546. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1643 -[UP] flip: 3696, stem: 23278, fault:2546. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1640 -[UP] flip: 2607, stem: 24278, fault:2527. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1591 -[UP] flip: 0, stem: 24518, fault:2527. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1613 -[UP] flip: 1864, stem: 25436, fault:2527. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1616 -[UP] flip: 1113, stem: 26057, fault:2622. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1656 -[UP] flip: 3779, stem: 27438, fault:2622. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1658 -[UP] flip: 956, stem: 28677, fault:2622. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1655 -[UP] flip: 1043, stem: 29837, fault:2622. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1654 -[UP] flip: 0, stem: 24754, fault:2584. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1550 -[UP] flip: 1588, stem: 25516, fault:2603. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1547 -[UP] flip: 3834, stem: 23298, fault:2546. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1526 -[UP] flip: 2616, stem: 24518, fault:2527. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1522 -[UP] flip: 880, stem: 25557, fault:2527. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1521 -[UP] flip: 2133, stem: 26737, fault:2527. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1519 -[UP] flip: 2778, stem: 27777, fault:2527. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1517 -[UP] flip: 2554, stem: 18196, fault:2071. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1285 -[UP] flip: 1826, stem: 19597, fault:2071. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1277 -[UP] flip: 2193, stem: 17442, fault:2071. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1237 -[UP] flip: 0, stem: 19022, fault:2071. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1226 -[UP] flip: 0, stem: 17341, fault:2071. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1207 -[UP] flip: 2398, stem: 18561, fault:2071. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1203 -[UP] flip: 851, stem: 19642, fault:1919. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1091 -[UP] flip: 2817, stem: 20982, fault:1919. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1089 -[UP] flip: 3679, stem: 21121, fault:2033. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1132 -[UP] flip: 0, stem: 21642, fault:1957. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1123 -[UP] flip: 2279, stem: 22943, fault:1957. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1117 -[UP] flip: 3533, stem: 24383, fault:1957. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1111 -[UP] flip: 3858, stem: 25442, fault:1976. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1138 -[UP] flip: 1394, stem: 24146, fault:1919. flip_cnt: 3, stem_cnt: 1402, fault_cnt:1034 -[UP] flip: 0, stem: 25266, fault:1919. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1034 -[UP] flip: 0, stem: 26646, fault:1919. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1034 -[UP] flip: 0, stem: 25387, fault:2527. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1388 -[UP] flip: 0, stem: 26211, fault:2508. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1381 -[UP] flip: 4763, stem: 27730, fault:2508. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1377 -[UP] flip: 646, stem: 23423, fault:2432. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1497 -[UP] flip: 657, stem: 25084, fault:2432. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1494 -[UP] flip: 0, stem: 26344, fault:2432. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1494 -[UP] flip: 973, stem: 27263, fault:2413. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1486 -[UP] flip: 4356, stem: 28223, fault:2413. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1484 -[UP] flip: 1015, stem: 28324, fault:2337. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1494 -[UP] flip: 953, stem: 24724, fault:2337. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1447 -[UP] flip: 830, stem: 26085, fault:2299. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1444 -[UP] flip: 2089, stem: 23924, fault:2280. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1503 -[UP] flip: 0, stem: 24963, fault:2318. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1526 -[UP] flip: 1791, stem: 26004, fault:2318. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1524 -[UP] flip: 2511, stem: 25159, fault:2375. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1581 -[UP] flip: 0, stem: 25440, fault:2356. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1573 -[UP] flip: 1580, stem: 26900, fault:2356. flip_cnt: 3, stem_cnt: 1408, fault_cnt:1571 -[UP] flip: 3321, stem: 26960, fault:2356. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1570 -[UP] flip: 3524, stem: 27840, fault:2356. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1561 -[UP] flip: 2672, stem: 28980, fault:2337. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1537 -[UP] flip: 4318, stem: 24639, fault:2299. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1473 -[UP] flip: 0, stem: 25220, fault:2299. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1473 -[UP] flip: 0, stem: 25203, fault:2280. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1473 -[UP] flip: 0, stem: 26180, fault:2280. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1473 -[UP] flip: 1079, stem: 27541, fault:2280. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1470 -[UP] flip: 0, stem: 29062, fault:2166. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1439 -[UP] flip: 0, stem: 28441, fault:2109. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1361 -[UP] flip: 3776, stem: 28879, fault:2109. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1359 -[UP] flip: 0, stem: 26838, fault:2109. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1344 -[UP] flip: 0, stem: 27141, fault:2090. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1330 -[UP] flip: 1945, stem: 28482, fault:2090. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1332 -[UP] flip: 0, stem: 27246, fault:1976. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1359 -[UP] flip: 2752, stem: 28287, fault:1976. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1347 -[UP] flip: 1163, stem: 28667, fault:1957. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1328 -[UP] flip: 0, stem: 29525, fault:1957. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1325 -[UP] flip: 2165, stem: 30825, fault:1957. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1321 -[UP] flip: 0, stem: 28147, fault:1976. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1333 -[UP] flip: 0, stem: 27787, fault:1995. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1337 -[UP] flip: 0, stem: 28587, fault:1938. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1330 -[UP] flip: 3734, stem: 23604, fault:2090. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1382 -[UP] flip: 2413, stem: 24483, fault:2014. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1338 -[UP] flip: 2472, stem: 23644, fault:1938. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1287 -[UP] flip: 1834, stem: 24563, fault:1976. flip_cnt: 3, stem_cnt: 1405, fault_cnt:1290 -[UP] flip: 0, stem: 25744, fault:1938. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1290 -[UP] flip: 5000, stem: 26744, fault:1957. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1307 -[UP] flip: 2931, stem: 24122, fault:2014. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1307 -[UP] flip: 0, stem: 25442, fault:1995. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1288 -[UP] flip: 0, stem: 25080, fault:2185. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1388 -[UP] flip: 3904, stem: 24500, fault:2261. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1366 -[UP] flip: 0, stem: 25520, fault:2261. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1366 -[UP] flip: 1027, stem: 26138, fault:2261. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1369 -[UP] flip: 0, stem: 25241, fault:2242. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1459 -[UP] flip: 2980, stem: 25759, fault:2242. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1462 -[UP] flip: 1247, stem: 26178, fault:2242. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1459 -[UP] flip: 1583, stem: 27216, fault:2242. flip_cnt: 3, stem_cnt: 1412, fault_cnt:1460 -[UP] flip: 4251, stem: 28115, fault:2242. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1460 -[UP] flip: 950, stem: 28596, fault:2223. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1457 -[UP] flip: 5228, stem: 26552, fault:2356. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1561 -[UP] flip: 5296, stem: 27672, fault:2356. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1557 -[UP] flip: 2029, stem: 28373, fault:2356. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1555 -[UP] flip: 0, stem: 29452, fault:2356. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1549 -[UP] flip: 4356, stem: 26580, fault:2337. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1522 -[UP] flip: 4203, stem: 27638, fault:2337. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1528 -[UP] flip: 4048, stem: 28838, fault:2299. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1552 -[UP] flip: 0, stem: 29998, fault:2299. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1552 -[UP] flip: 3886, stem: 30977, fault:2299. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1549 -[UP] flip: 0, stem: 30234, fault:2508. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1657 -[UP] flip: 2923, stem: 30873, fault:2508. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1660 -[UP] flip: 2766, stem: 31953, fault:2508. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1664 -[UP] flip: 1875, stem: 33013, fault:2413. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1622 -[UP] flip: 1476, stem: 34073, fault:2413. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1621 -[UP] flip: 2845, stem: 30589, fault:2470. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1693 -[UP] flip: 2105, stem: 29112, fault:2470. flip_cnt: 4, stem_cnt: 1416, fault_cnt:1654 -[UP] flip: 4347, stem: 29632, fault:2470. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1637 -[UP] flip: 1128, stem: 30712, fault:2470. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1640 -[UP] flip: 2401, stem: 31872, fault:2470. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1646 -[UP] flip: 3923, stem: 32352, fault:2470. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1644 -[UP] flip: 902, stem: 30296, fault:2394. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1530 -[UP] flip: 3841, stem: 31317, fault:2394. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1527 -[UP] flip: 4592, stem: 32057, fault:2394. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1524 -[UP] flip: 1122, stem: 31755, fault:2451. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1543 -[UP] flip: 4704, stem: 33075, fault:2451. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1539 -[UP] flip: 3972, stem: 29640, fault:2603. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1643 -[UP] flip: 968, stem: 31001, fault:2603. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1638 -[UP] flip: 2818, stem: 30161, fault:2603. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1635 -[UP] flip: 2323, stem: 31279, fault:2603. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1638 -[UP] flip: 2482, stem: 31038, fault:2603. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1627 -[UP] flip: 1853, stem: 28457, fault:2527. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1606 -[UP] flip: 0, stem: 26195, fault:2527. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1596 -[UP] flip: 2779, stem: 26313, fault:2451. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1564 -[UP] flip: 0, stem: 26312, fault:2432. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1569 -[UP] flip: 2834, stem: 27272, fault:2432. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1570 -[UP] flip: 727, stem: 27751, fault:2470. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1554 -[UP] flip: 3519, stem: 28631, fault:2451. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1601 -[UP] flip: 2061, stem: 29150, fault:2451. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1603 -[UP] flip: 3549, stem: 29350, fault:2508. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1635 -[UP] flip: 4379, stem: 30350, fault:2470. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1630 -[UP] flip: 0, stem: 31310, fault:2470. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1630 -[UP] flip: 2333, stem: 31550, fault:2394. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1599 -[UP] flip: 3744, stem: 32810, fault:2394. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1584 -[UP] flip: 3629, stem: 33210, fault:2451. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1619 -[UP] flip: 1737, stem: 34551, fault:2451. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1609 -[UP] flip: 3824, stem: 33754, fault:2641. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1652 -[UP] flip: 0, stem: 35154, fault:2641. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1643 -[UP] flip: 1592, stem: 36015, fault:2641. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1641 -[UP] flip: 0, stem: 36636, fault:2641. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1638 -[UP] flip: 0, stem: 36316, fault:2641. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1636 -[UP] flip: 2087, stem: 36053, fault:2641. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1632 -[UP] flip: 2500, stem: 36693, fault:2603. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1609 -[UP] flip: 0, stem: 37533, fault:2622. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1625 -[UP] flip: 0, stem: 38473, fault:2622. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1625 -[UP] flip: 2708, stem: 37433, fault:2603. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1644 -[UP] flip: 3067, stem: 38453, fault:2546. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1630 -[UP] flip: 1064, stem: 39533, fault:2546. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1629 -[UP] flip: 5554, stem: 36772, fault:2508. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1575 -[UP] flip: 5591, stem: 33312, fault:2508. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1571 -[UP] flip: 2199, stem: 33713, fault:2470. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1528 -[UP] flip: 1815, stem: 34792, fault:2470. flip_cnt: 3, stem_cnt: 1416, fault_cnt:1527 -[UP] flip: 2820, stem: 36916, fault:2527. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1558 -[UP] flip: 2311, stem: 38536, fault:2527. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1550 -[UP] flip: 4039, stem: 37376, fault:2508. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1549 -[UP] flip: 0, stem: 38557, fault:2489. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1552 -[UP] flip: 2871, stem: 24622, fault:2698. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1611 -[UP] flip: 857, stem: 25084, fault:2641. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1595 -[UP] flip: 1226, stem: 23861, fault:2641. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1594 -[UP] flip: 3977, stem: 24479, fault:2641. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1592 -[UP] flip: 1572, stem: 25439, fault:2641. flip_cnt: 3, stem_cnt: 1409, fault_cnt:1601 -[UP] flip: 0, stem: 27180, fault:2641. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1601 -[UP] flip: 0, stem: 20904, fault:2242. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1508 -[UP] flip: 2037, stem: 21962, fault:2242. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1506 -[UP] flip: 1211, stem: 22806, fault:2242. flip_cnt: 3, stem_cnt: 1402, fault_cnt:1539 -[UP] flip: 2180, stem: 23886, fault:2242. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1537 -[UP] flip: 0, stem: 23563, fault:2527. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1677 -[UP] flip: 0, stem: 25123, fault:2527. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1677 -[UP] flip: 1029, stem: 26484, fault:2527. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1676 -[UP] flip: 1049, stem: 27644, fault:2527. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1673 -[UP] flip: 0, stem: 29124, fault:2527. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1673 -[UP] flip: 4766, stem: 30424, fault:2527. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1671 -[UP] flip: 0, stem: 25661, fault:2736. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1710 -[UP] flip: 2386, stem: 26861, fault:2755. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1708 -[UP] flip: 0, stem: 27981, fault:2755. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1708 -[UP] flip: 3539, stem: 26241, fault:2622. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1624 -[UP] flip: 964, stem: 27363, fault:2622. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1615 -[UP] flip: 3650, stem: 25103, fault:2603. flip_cnt: 4, stem_cnt: 1405, fault_cnt:1599 -[UP] flip: 0, stem: 26143, fault:2622. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1600 -[UP] flip: 941, stem: 24387, fault:2470. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1579 -[UP] flip: 3775, stem: 22710, fault:2166. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1404 -[UP] flip: 0, stem: 22152, fault:2014. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1375 -[UP] flip: 992, stem: 23273, fault:2014. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1374 -[UP] flip: 3496, stem: 24234, fault:2014. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1370 -[UP] flip: 0, stem: 25514, fault:2014. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1355 -[UP] flip: 0, stem: 26973, fault:2014. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1355 -[UP] flip: 2519, stem: 28294, fault:2014. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1354 -[UP] flip: 0, stem: 27008, fault:2071. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1398 -[UP] flip: 2531, stem: 25007, fault:2052. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1364 -[UP] flip: 1559, stem: 22525, fault:2033. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1361 -[UP] flip: 0, stem: 23946, fault:2033. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1361 -[UP] flip: 2185, stem: 25187, fault:2033. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1359 -[UP] flip: 2607, stem: 22328, fault:2413. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1475 -[UP] flip: 0, stem: 23948, fault:2356. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1462 -[UP] flip: 0, stem: 25188, fault:2356. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1464 -[UP] flip: 3083, stem: 26628, fault:2356. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1460 -[UP] flip: 4044, stem: 30008, fault:2356. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1458 -[UP] flip: 1034, stem: 29746, fault:2337. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1399 -[UP] flip: 0, stem: 31286, fault:2337. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1399 -[UP] flip: 3245, stem: 28049, fault:2394. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1479 -[UP] flip: 4918, stem: 27268, fault:2470. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1480 -[UP] flip: 3514, stem: 23582, fault:2508. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1487 -[UP] flip: 0, stem: 23362, fault:2508. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1474 -[UP] flip: 942, stem: 24663, fault:2527. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1496 -[UP] flip: 2832, stem: 25623, fault:2508. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1494 -[UP] flip: 0, stem: 25759, fault:2470. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1521 -[UP] flip: 2501, stem: 26200, fault:2394. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1482 -[UP] flip: 4812, stem: 27900, fault:2508. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1524 -[UP] flip: 2439, stem: 28643, fault:2470. flip_cnt: 4, stem_cnt: 1405, fault_cnt:1512 -[UP] flip: 1506, stem: 29544, fault:2470. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1507 -[UP] flip: 5627, stem: 30864, fault:2470. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1503 -[UP] flip: 1346, stem: 32085, fault:2413. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1500 -[UP] flip: 2226, stem: 31947, fault:2451. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1481 -[UP] flip: 3076, stem: 24291, fault:1938. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1203 -[UP] flip: 4386, stem: 25410, fault:1919. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1185 -[UP] flip: 0, stem: 27011, fault:1900. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1179 -[UP] flip: 0, stem: 28231, fault:1900. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1179 -[UP] flip: 0, stem: 28208, fault:2318. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1400 -[UP] flip: 1137, stem: 28007, fault:2223. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1348 -[UP] flip: 4574, stem: 28928, fault:2185. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1356 -[UP] flip: 1290, stem: 28642, fault:2337. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1446 -[UP] flip: 2759, stem: 28904, fault:2299. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1438 -[UP] flip: 0, stem: 28306, fault:2223. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1439 -[UP] flip: 4141, stem: 29506, fault:2223. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1435 -[UP] flip: 5873, stem: 29866, fault:2185. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1425 -[UP] flip: 0, stem: 29847, fault:2147. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1434 -[UP] flip: 1096, stem: 31188, fault:2147. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1433 -[UP] flip: 4286, stem: 32150, fault:2204. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1438 -[UP] flip: 2416, stem: 32388, fault:2299. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1507 -[UP] flip: 4897, stem: 33888, fault:2299. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1496 -[UP] flip: 0, stem: 34488, fault:2318. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1511 -[UP] flip: 0, stem: 35948, fault:2318. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1511 -[UP] flip: 2093, stem: 36728, fault:2375. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1518 -[UP] flip: 1049, stem: 29058, fault:2242. flip_cnt: 2, stem_cnt: 1390, fault_cnt:1459 -[UP] flip: 2950, stem: 28175, fault:2223. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1464 -[UP] flip: 0, stem: 28450, fault:2280. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1496 -[UP] flip: 3913, stem: 22127, fault:2508. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1562 -[UP] flip: 3952, stem: 21903, fault:2698. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1614 -[UP] flip: 815, stem: 23164, fault:2698. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1613 -[UP] flip: 4490, stem: 24545, fault:2660. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1593 -[UP] flip: 0, stem: 25645, fault:2660. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1593 -[UP] flip: 5099, stem: 22784, fault:2527. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1594 -[UP] flip: 4650, stem: 23745, fault:2527. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1590 -[UP] flip: 4612, stem: 21743, fault:2451. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1579 -[UP] flip: 0, stem: 23304, fault:2451. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1570 -[UP] flip: 0, stem: 21543, fault:2451. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1614 -[UP] flip: 3886, stem: 19302, fault:2451. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1598 -[UP] flip: 3070, stem: 18903, fault:2432. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1607 -[UP] flip: 1415, stem: 20602, fault:2432. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1605 -[UP] flip: 0, stem: 21322, fault:2432. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1605 -[UP] flip: 0, stem: 22622, fault:2432. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1605 -[UP] flip: 3567, stem: 24062, fault:2432. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1601 -[UP] flip: 2344, stem: 25342, fault:2451. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1597 -[UP] flip: 2544, stem: 25300, fault:2451. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1595 -[UP] flip: 0, stem: 26560, fault:2470. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1609 -[UP] flip: 1965, stem: 27800, fault:2489. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1607 -[UP] flip: 0, stem: 27619, fault:2470. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1613 -[UP] flip: 4016, stem: 22580, fault:2261. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1552 -[UP] flip: 1500, stem: 23419, fault:2204. flip_cnt: 3, stem_cnt: 1409, fault_cnt:1536 -[UP] flip: 1447, stem: 22063, fault:1995. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1439 -[UP] flip: 0, stem: 23503, fault:1995. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1439 -[UP] flip: 2074, stem: 21948, fault:2014. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1406 -[UP] flip: 0, stem: 23368, fault:2014. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1403 -[UP] flip: 3982, stem: 24188, fault:2014. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1395 -[UP] flip: 890, stem: 20107, fault:2261. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1451 -[UP] flip: 0, stem: 21049, fault:2223. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1358 -[UP] flip: 4151, stem: 22269, fault:2204. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1354 -[UP] flip: 0, stem: 21073, fault:2337. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1415 -[UP] flip: 0, stem: 22271, fault:2337. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1415 -[UP] flip: 0, stem: 23872, fault:2337. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1415 -[UP] flip: 2677, stem: 21834, fault:2147. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1334 -[UP] flip: 0, stem: 23674, fault:2147. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1334 -[UP] flip: 3026, stem: 22147, fault:2147. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1400 -[UP] flip: 4463, stem: 23248, fault:2147. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1398 -[UP] flip: 2911, stem: 24728, fault:2147. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1394 -[UP] flip: 4586, stem: 24948, fault:2071. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1267 -[UP] flip: 0, stem: 25948, fault:2071. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1267 -[UP] flip: 2092, stem: 27207, fault:2090. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1279 -[UP] flip: 4143, stem: 28287, fault:2090. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1273 -[UP] flip: 0, stem: 27025, fault:2090. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1265 -[UP] flip: 3370, stem: 20865, fault:2052. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1262 -[UP] flip: 2279, stem: 22646, fault:2052. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1258 -[UP] flip: 2397, stem: 24046, fault:2033. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1272 -[UP] flip: 2621, stem: 23171, fault:2033. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1189 -[UP] flip: 2547, stem: 23767, fault:2033. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1186 -[UP] flip: 0, stem: 24846, fault:2033. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1187 -[UP] flip: 4921, stem: 26246, fault:2014. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1184 -[UP] flip: 0, stem: 26824, fault:1995. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1192 -[UP] flip: 2457, stem: 22626, fault:2033. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1185 -[UP] flip: 1130, stem: 23347, fault:2033. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1189 -[UP] flip: 5607, stem: 23387, fault:2033. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1185 -[UP] flip: 0, stem: 21747, fault:1919. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1129 -[UP] flip: 5052, stem: 23047, fault:1919. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1125 -[UP] flip: 3783, stem: 24207, fault:1900. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1121 -[UP] flip: 0, stem: 25887, fault:1900. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1117 -[UP] flip: 2556, stem: 26707, fault:1900. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1114 -[UP] flip: 4468, stem: 27706, fault:1900. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1121 -[UP] flip: 0, stem: 26728, fault:1824. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1111 -[UP] flip: 0, stem: 27347, fault:1824. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1113 -[UP] flip: 4533, stem: 28266, fault:1824. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1109 -[UP] flip: 4131, stem: 29486, fault:1444. flip_cnt: 7, stem_cnt: 1402, fault_cnt:872 -[UP] flip: 0, stem: 30705, fault:1216. flip_cnt: 0, stem_cnt: 1403, fault_cnt:728 -[UP] flip: 0, stem: 26907, fault:1824. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1118 -[UP] flip: 0, stem: 26967, fault:1805. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1125 -[UP] flip: 2985, stem: 28088, fault:1805. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1123 -[UP] flip: 0, stem: 28548, fault:1805. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1116 -[UP] flip: 0, stem: 29648, fault:1805. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1116 -[UP] flip: 1474, stem: 30488, fault:1805. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1115 -[UP] flip: 0, stem: 31968, fault:1805. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1115 -[UP] flip: 4278, stem: 29085, fault:1976. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1138 -[UP] flip: 2320, stem: 30045, fault:1976. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1136 -[UP] flip: 0, stem: 30386, fault:1729. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1073 -[UP] flip: 3032, stem: 30865, fault:1729. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1069 -[UP] flip: 0, stem: 24274, fault:1292. flip_cnt: 0, stem_cnt: 1394, fault_cnt:886 -[UP] flip: 2328, stem: 25033, fault:1292. flip_cnt: 4, stem_cnt: 1395, fault_cnt:884 -[UP] flip: 0, stem: 25271, fault:1273. flip_cnt: 0, stem_cnt: 1397, fault_cnt:904 -[UP] flip: 0, stem: 25769, fault:1273. flip_cnt: 0, stem_cnt: 1399, fault_cnt:900 -[UP] flip: 1039, stem: 24784, fault:1957. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1262 -[UP] flip: 3014, stem: 25002, fault:1919. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1257 -[UP] flip: 4235, stem: 25322, fault:1919. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1247 -[UP] flip: 4577, stem: 27282, fault:1919. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1233 -[UP] flip: 3802, stem: 26862, fault:1919. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1235 -[UP] flip: 5735, stem: 25522, fault:1900. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1268 -[UP] flip: 3033, stem: 26682, fault:1900. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1264 -[UP] flip: 3461, stem: 27841, fault:1900. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1262 -[UP] flip: 0, stem: 24200, fault:1900. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1189 -[UP] flip: 0, stem: 24479, fault:1976. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1197 -[UP] flip: 4315, stem: 23917, fault:1957. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1369 -[UP] flip: 1074, stem: 24457, fault:1957. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1358 -[UP] flip: 0, stem: 22400, fault:1957. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1351 -[UP] flip: 3468, stem: 22798, fault:1957. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1347 -[UP] flip: 0, stem: 23375, fault:2052. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1382 -[UP] flip: 0, stem: 24193, fault:2052. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1382 -[UP] flip: 1198, stem: 23113, fault:1938. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1350 -[UP] flip: 1388, stem: 24134, fault:1938. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1349 -[UP] flip: 4641, stem: 25074, fault:1900. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1345 -[UP] flip: 6046, stem: 26054, fault:1843. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1337 -[UP] flip: 3844, stem: 26834, fault:1843. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1333 -[UP] flip: 1084, stem: 26355, fault:1824. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1315 -[UP] flip: 3292, stem: 27595, fault:1824. flip_cnt: 3, stem_cnt: 1413, fault_cnt:1312 -[UP] flip: 1528, stem: 26716, fault:1805. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1315 -[UP] flip: 1194, stem: 26237, fault:1957. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1437 -[UP] flip: 2087, stem: 27558, fault:1957. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1435 -[UP] flip: 0, stem: 28336, fault:1957. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1432 -[UP] flip: 0, stem: 22418, fault:1938. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1423 -[UP] flip: 3105, stem: 23276, fault:1938. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1425 -[UP] flip: 4821, stem: 21177, fault:1900. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1390 -[UP] flip: 1337, stem: 22376, fault:1900. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1393 -[UP] flip: 767, stem: 23417, fault:1900. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1397 -[UP] flip: 3397, stem: 20502, fault:2147. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1474 -[UP] flip: 1994, stem: 20682, fault:2166. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1487 -[UP] flip: 0, stem: 20460, fault:2242. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1573 -[UP] flip: 2939, stem: 21900, fault:2242. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1571 -[UP] flip: 0, stem: 23000, fault:2242. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1574 -[UP] flip: 799, stem: 24181, fault:2242. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1571 -[UP] flip: 0, stem: 24224, fault:2242. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1556 -[UP] flip: 4818, stem: 24362, fault:2261. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1557 -[UP] flip: 1554, stem: 24357, fault:2318. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1589 -[UP] flip: 911, stem: 24837, fault:2318. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1578 -[UP] flip: 0, stem: 26097, fault:2318. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1578 -[UP] flip: 1091, stem: 24618, fault:2299. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1502 -[UP] flip: 0, stem: 25218, fault:2299. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1536 -[UP] flip: 1269, stem: 26479, fault:2242. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1533 -[UP] flip: 2854, stem: 26599, fault:2242. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1530 -[UP] flip: 0, stem: 21644, fault:2166. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1497 -[UP] flip: 0, stem: 22764, fault:2166. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1497 -[UP] flip: 6449, stem: 22202, fault:2147. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1465 -[UP] flip: 2679, stem: 23382, fault:2166. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1463 -[UP] flip: 0, stem: 24481, fault:2204. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1469 -[UP] flip: 0, stem: 24440, fault:2071. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1371 -[UP] flip: 3237, stem: 24818, fault:2052. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1383 -[UP] flip: 0, stem: 25818, fault:1919. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1374 -[UP] flip: 5955, stem: 20900, fault:2071. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1384 -[UP] flip: 1234, stem: 20440, fault:2147. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1538 -[UP] flip: 0, stem: 21739, fault:2147. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1538 -[UP] flip: 0, stem: 23080, fault:2147. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1538 -[UP] flip: 6024, stem: 23741, fault:2147. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1564 -[UP] flip: 2259, stem: 24501, fault:2166. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1561 -[UP] flip: 0, stem: 25682, fault:2166. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1569 -[UP] flip: 2699, stem: 25980, fault:2223. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1585 -[UP] flip: 6417, stem: 25720, fault:2204. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1583 -[UP] flip: 2355, stem: 26260, fault:2204. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1581 -[UP] flip: 3358, stem: 23641, fault:1976. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1505 -[UP] flip: 0, stem: 24641, fault:1862. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1452 -[UP] flip: 961, stem: 24299, fault:1748. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1436 -[UP] flip: 1709, stem: 24960, fault:1577. flip_cnt: 3, stem_cnt: 1408, fault_cnt:1253 -[UP] flip: 0, stem: 19948, fault:1615. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1274 -[UP] flip: 1880, stem: 19345, fault:1596. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1297 -[UP] flip: 1080, stem: 20383, fault:1577. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1294 -[UP] flip: 0, stem: 21763, fault:1577. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1294 -[UP] flip: 3513, stem: 23823, fault:1577. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1291 -[UP] flip: 2660, stem: 21645, fault:1444. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1217 -[UP] flip: 0, stem: 22464, fault:1501. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1232 -[UP] flip: 5306, stem: 23104, fault:1482. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1226 -[UP] flip: 5233, stem: 22645, fault:1957. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1467 -[UP] flip: 5986, stem: 23864, fault:1919. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1463 -[UP] flip: 3424, stem: 25404, fault:1919. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1460 -[UP] flip: 0, stem: 27064, fault:1919. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1458 -[UP] flip: 0, stem: 26465, fault:1900. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1452 -[UP] flip: 3189, stem: 27665, fault:1900. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1448 -[UP] flip: 4789, stem: 29005, fault:1843. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1363 -[UP] flip: 1934, stem: 27845, fault:1862. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1211 -[UP] flip: 3210, stem: 29265, fault:1862. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1209 -[UP] flip: 1836, stem: 30445, fault:1862. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1208 -[UP] flip: 3573, stem: 25286, fault:1691. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1104 -[UP] flip: 0, stem: 25687, fault:1691. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1099 -[UP] flip: 3323, stem: 26386, fault:1691. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1101 -[UP] flip: 0, stem: 23757, fault:1710. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1235 -[UP] flip: 3407, stem: 24757, fault:1710. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1237 -[UP] flip: 0, stem: 25776, fault:1710. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1231 -[UP] flip: 1300, stem: 26716, fault:1710. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1228 -[UP] flip: 0, stem: 22842, fault:1691. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1369 -[UP] flip: 3186, stem: 22396, fault:1843. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1508 -[UP] flip: 1356, stem: 23477, fault:1843. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1514 -[UP] flip: 3470, stem: 23896, fault:1900. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1520 -[UP] flip: 2049, stem: 25055, fault:1900. flip_cnt: 3, stem_cnt: 1413, fault_cnt:1517 -[UP] flip: 1309, stem: 26655, fault:1900. flip_cnt: 3, stem_cnt: 1413, fault_cnt:1516 -[UP] flip: 2256, stem: 27775, fault:1919. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1516 -[UP] flip: 5589, stem: 29055, fault:1919. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1512 -[UP] flip: 3060, stem: 30095, fault:1900. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1508 -[UP] flip: 0, stem: 31635, fault:1881. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1488 -[UP] flip: 1328, stem: 31555, fault:1881. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1488 -[UP] flip: 3289, stem: 27274, fault:1881. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1547 -[UP] flip: 2966, stem: 27093, fault:1881. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1553 -[UP] flip: 1015, stem: 27993, fault:1881. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1552 -[UP] flip: 3060, stem: 28954, fault:1881. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1548 -[UP] flip: 2358, stem: 22903, fault:1900. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1562 -[UP] flip: 0, stem: 24223, fault:1748. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1423 -[UP] flip: 2289, stem: 25383, fault:1748. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1420 -[UP] flip: 2271, stem: 26583, fault:1748. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1420 -[UP] flip: 3031, stem: 27041, fault:1862. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1535 -[UP] flip: 0, stem: 27339, fault:1862. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1526 -[UP] flip: 5118, stem: 28437, fault:1862. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1529 -[UP] flip: 3734, stem: 21492, fault:2071. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1676 -[UP] flip: 3004, stem: 24992, fault:2052. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1668 -[UP] flip: 5488, stem: 25992, fault:2033. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1647 -[UP] flip: 0, stem: 27032, fault:2033. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1647 -[UP] flip: 2353, stem: 27932, fault:2033. flip_cnt: 4, stem_cnt: 1416, fault_cnt:1645 -[UP] flip: 1957, stem: 26130, fault:2299. flip_cnt: 3, stem_cnt: 1418, fault_cnt:1574 -[UP] flip: 3739, stem: 26848, fault:2299. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1579 -[UP] flip: 1305, stem: 28049, fault:2299. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1589 -[UP] flip: 0, stem: 28388, fault:2299. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1589 -[UP] flip: 4876, stem: 24701, fault:2451. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1664 -[UP] flip: 3573, stem: 24859, fault:2470. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1671 -[UP] flip: 1763, stem: 25639, fault:2470. flip_cnt: 3, stem_cnt: 1429, fault_cnt:1674 -[UP] flip: 0, stem: 26459, fault:2470. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1674 -[UP] flip: 0, stem: 27899, fault:2470. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1674 -[UP] flip: 1879, stem: 28920, fault:2470. flip_cnt: 3, stem_cnt: 1428, fault_cnt:1669 -[UP] flip: 5634, stem: 29220, fault:2413. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1653 -[UP] flip: 4463, stem: 30019, fault:2413. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1655 -[UP] flip: 0, stem: 30980, fault:2508. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1744 -[UP] flip: 1498, stem: 31681, fault:2451. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1741 -[UP] flip: 3295, stem: 32121, fault:2451. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1739 -[UP] flip: 0, stem: 32701, fault:2451. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1739 -[UP] flip: 0, stem: 32882, fault:2451. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1738 -[UP] flip: 2004, stem: 28998, fault:2527. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1749 -[UP] flip: 5301, stem: 29318, fault:2527. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1750 -[UP] flip: 0, stem: 26984, fault:2451. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1702 -[UP] flip: 0, stem: 27964, fault:2451. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1702 -[UP] flip: 2125, stem: 28504, fault:2375. flip_cnt: 3, stem_cnt: 1424, fault_cnt:1641 -[UP] flip: 3630, stem: 28902, fault:2375. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1644 -[UP] flip: 2743, stem: 28024, fault:2394. flip_cnt: 4, stem_cnt: 1424, fault_cnt:1698 -[UP] flip: 5020, stem: 28945, fault:2356. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1684 -[UP] flip: 2490, stem: 30125, fault:2356. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1682 -[UP] flip: 3304, stem: 30042, fault:2584. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1704 -[UP] flip: 1344, stem: 29181, fault:2603. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1705 -[UP] flip: 4260, stem: 28081, fault:2584. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1716 -[UP] flip: 2556, stem: 29120, fault:2584. flip_cnt: 4, stem_cnt: 1428, fault_cnt:1709 -[UP] flip: 1471, stem: 30121, fault:2584. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1727 -[UP] flip: 3557, stem: 30901, fault:2584. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1725 -[UP] flip: 858, stem: 32002, fault:2584. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1724 -[UP] flip: 5176, stem: 31880, fault:2584. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1720 -[UP] flip: 1784, stem: 31079, fault:2546. flip_cnt: 3, stem_cnt: 1429, fault_cnt:1692 -[UP] flip: 6469, stem: 32299, fault:2546. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1688 -[UP] flip: 2985, stem: 31658, fault:2565. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1694 -[UP] flip: 0, stem: 32519, fault:2565. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1706 -[UP] flip: 5413, stem: 31139, fault:2565. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1703 -[UP] flip: 4872, stem: 31999, fault:2546. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1691 -[UP] flip: 1110, stem: 32860, fault:2527. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1688 -[UP] flip: 4957, stem: 33460, fault:2527. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1686 -[UP] flip: 0, stem: 33620, fault:2527. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1700 -[UP] flip: 0, stem: 34181, fault:2527. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1700 -[UP] flip: 0, stem: 33479, fault:2603. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1702 -[UP] flip: 4776, stem: 34199, fault:2603. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1698 -[UP] flip: 1510, stem: 34436, fault:2660. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1700 -[UP] flip: 0, stem: 34495, fault:2755. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1748 -[UP] flip: 2958, stem: 28780, fault:2641. flip_cnt: 4, stem_cnt: 1428, fault_cnt:1719 -[UP] flip: 0, stem: 29321, fault:2679. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1732 -[UP] flip: 2844, stem: 30545, fault:2679. flip_cnt: 4, stem_cnt: 1423, fault_cnt:1723 -[UP] flip: 1334, stem: 30405, fault:2679. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1713 -[UP] flip: 3079, stem: 31685, fault:2660. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1711 -[UP] flip: 4886, stem: 32025, fault:2622. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1668 -[UP] flip: 5670, stem: 26645, fault:2451. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1622 -[UP] flip: 1299, stem: 25685, fault:2451. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1621 -[UP] flip: 4975, stem: 26845, fault:2451. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1619 -[UP] flip: 4895, stem: 27025, fault:2451. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1615 -[UP] flip: 3342, stem: 28165, fault:2470. flip_cnt: 4, stem_cnt: 1423, fault_cnt:1603 -[UP] flip: 1733, stem: 31805, fault:2470. flip_cnt: 3, stem_cnt: 1423, fault_cnt:1608 -[UP] flip: 0, stem: 32785, fault:2470. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1602 -[UP] flip: 1967, stem: 28989, fault:2432. flip_cnt: 3, stem_cnt: 1419, fault_cnt:1532 -[UP] flip: 0, stem: 24368, fault:2508. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1552 -[UP] flip: 0, stem: 25808, fault:2508. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1558 -[UP] flip: 4242, stem: 26528, fault:2508. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1551 -[UP] flip: 4164, stem: 26168, fault:2451. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1541 -[UP] flip: 1485, stem: 27009, fault:2451. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1540 -[UP] flip: 0, stem: 28449, fault:2451. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1540 -[UP] flip: 5319, stem: 29469, fault:2451. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1536 -[UP] flip: 3171, stem: 29829, fault:2432. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1533 -[UP] flip: 6704, stem: 29131, fault:2375. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1504 -[UP] flip: 3705, stem: 28328, fault:2375. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1503 -[UP] flip: 0, stem: 25826, fault:2508. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1592 -[UP] flip: 1458, stem: 26505, fault:2508. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1591 -[UP] flip: 1419, stem: 25869, fault:2489. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1574 -[UP] flip: 4673, stem: 18149, fault:2489. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1585 -[UP] flip: 3069, stem: 19489, fault:2489. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1586 -[UP] flip: 4656, stem: 20669, fault:2489. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1576 -[UP] flip: 2932, stem: 20007, fault:2413. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1483 -[UP] flip: 5355, stem: 20765, fault:2413. flip_cnt: 7, stem_cnt: 1423, fault_cnt:1479 -[UP] flip: 5466, stem: 21745, fault:2394. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1475 -[UP] flip: 0, stem: 23067, fault:2394. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1478 -[UP] flip: 0, stem: 24048, fault:2394. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1473 -[UP] flip: 0, stem: 24427, fault:2394. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1473 -[UP] flip: 0, stem: 24446, fault:2280. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1436 -[UP] flip: 0, stem: 25366, fault:2280. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1436 -[UP] flip: 2897, stem: 26467, fault:2280. flip_cnt: 4, stem_cnt: 1421, fault_cnt:1434 -[UP] flip: 1296, stem: 27488, fault:2280. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1420 -[UP] flip: 3149, stem: 26345, fault:2280. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1417 -[UP] flip: 2855, stem: 22030, fault:2337. flip_cnt: 4, stem_cnt: 1418, fault_cnt:1508 -[UP] flip: 2960, stem: 22851, fault:2337. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1505 -[UP] flip: 0, stem: 20051, fault:2299. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1494 -[UP] flip: 0, stem: 21111, fault:2299. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1494 -[UP] flip: 1666, stem: 21092, fault:2280. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1491 -[UP] flip: 0, stem: 22073, fault:2280. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1491 -[UP] flip: 0, stem: 20373, fault:2356. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1496 -[UP] flip: 1389, stem: 20393, fault:2337. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1499 -[UP] flip: 5300, stem: 20853, fault:2318. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1495 -[UP] flip: 0, stem: 20313, fault:2299. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1493 -[UP] flip: 898, stem: 21254, fault:2299. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1490 -[UP] flip: 1063, stem: 18716, fault:2280. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1455 -[UP] flip: 0, stem: 17694, fault:2280. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1465 -[UP] flip: 1449, stem: 18695, fault:2280. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1464 -[UP] flip: 6303, stem: 19813, fault:2280. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1460 -[UP] flip: 0, stem: 20773, fault:2280. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1460 -[UP] flip: 6774, stem: 20173, fault:2261. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1445 -[UP] flip: 0, stem: 18508, fault:2451. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1567 -[UP] flip: 3669, stem: 19428, fault:2432. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1564 -[UP] flip: 5461, stem: 20868, fault:2413. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1524 -[UP] flip: 0, stem: 22128, fault:2413. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1530 -[UP] flip: 0, stem: 22306, fault:2451. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1583 -[UP] flip: 4758, stem: 23266, fault:2451. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1579 -[UP] flip: 3171, stem: 21024, fault:2394. flip_cnt: 4, stem_cnt: 1424, fault_cnt:1516 -[UP] flip: 0, stem: 20903, fault:2394. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1528 -[UP] flip: 0, stem: 23245, fault:2413. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1533 -[UP] flip: 0, stem: 19245, fault:2394. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1585 -[UP] flip: 2550, stem: 17966, fault:2584. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1650 -[UP] flip: 0, stem: 18746, fault:2584. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1647 -[UP] flip: 5140, stem: 19866, fault:2584. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1645 -[UP] flip: 3792, stem: 20864, fault:2603. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1649 -[UP] flip: 1417, stem: 22066, fault:2622. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1679 -[UP] flip: 1558, stem: 22967, fault:2622. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1678 -[UP] flip: 0, stem: 23487, fault:2622. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1678 -[UP] flip: 0, stem: 23725, fault:2603. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1670 -[UP] flip: 1184, stem: 24584, fault:2584. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1669 -[UP] flip: 2950, stem: 19640, fault:2698. flip_cnt: 4, stem_cnt: 1428, fault_cnt:1718 -[UP] flip: 3893, stem: 20358, fault:2755. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1755 -[UP] flip: 3789, stem: 21379, fault:2736. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1757 -[UP] flip: 0, stem: 22679, fault:2736. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1765 -[UP] flip: 6842, stem: 23779, fault:2736. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1761 -[UP] flip: 5056, stem: 24159, fault:2736. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1757 -[UP] flip: 1073, stem: 24718, fault:2755. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1752 -[UP] flip: 0, stem: 25619, fault:2793. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1806 -[UP] flip: 3972, stem: 25537, fault:2793. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1803 -[UP] flip: 3659, stem: 26096, fault:2793. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1801 -[UP] flip: 2687, stem: 25996, fault:2869. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1816 -[UP] flip: 2282, stem: 26636, fault:2888. flip_cnt: 3, stem_cnt: 1432, fault_cnt:1821 -[UP] flip: 2581, stem: 27156, fault:2888. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1819 -[UP] flip: 4210, stem: 28276, fault:2850. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1801 -[UP] flip: 3201, stem: 29096, fault:2831. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1798 -[UP] flip: 2274, stem: 29334, fault:2831. flip_cnt: 4, stem_cnt: 1434, fault_cnt:1799 -[UP] flip: 5422, stem: 26154, fault:2831. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1803 -[UP] flip: 5330, stem: 27194, fault:2698. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1771 -[UP] flip: 0, stem: 19835, fault:2698. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1755 -[UP] flip: 4394, stem: 20235, fault:2698. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1751 -[UP] flip: 4777, stem: 21355, fault:2679. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1745 -[UP] flip: 2121, stem: 21777, fault:2622. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1740 -[UP] flip: 4432, stem: 20475, fault:2622. flip_cnt: 4, stem_cnt: 1433, fault_cnt:1746 -[UP] flip: 0, stem: 19836, fault:2546. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1742 -[UP] flip: 3166, stem: 20134, fault:2546. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1744 -[UP] flip: 5514, stem: 19274, fault:2527. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1745 -[UP] flip: 1256, stem: 18695, fault:2508. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1734 -[UP] flip: 4968, stem: 19455, fault:2489. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1730 -[UP] flip: 5026, stem: 19995, fault:2451. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1726 -[UP] flip: 0, stem: 19134, fault:2584. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1762 -[UP] flip: 0, stem: 19673, fault:2584. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1762 -[UP] flip: 844, stem: 20212, fault:2584. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1763 -[UP] flip: 2603, stem: 20613, fault:2584. flip_cnt: 4, stem_cnt: 1435, fault_cnt:1769 -[UP] flip: 5370, stem: 20673, fault:2584. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1744 -[UP] flip: 2255, stem: 21034, fault:2584. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1741 -[UP] flip: 1040, stem: 21713, fault:2584. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1742 -[UP] flip: 2580, stem: 22033, fault:2603. flip_cnt: 4, stem_cnt: 1435, fault_cnt:1748 -[UP] flip: 5330, stem: 22713, fault:2641. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1758 -[UP] flip: 0, stem: 23373, fault:2641. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1758 -[UP] flip: 3236, stem: 26053, fault:2641. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1757 -[UP] flip: 3078, stem: 25372, fault:2641. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1760 -[UP] flip: 1988, stem: 24530, fault:2641. flip_cnt: 3, stem_cnt: 1438, fault_cnt:1769 -[UP] flip: 1402, stem: 21252, fault:2660. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1851 -[UP] flip: 4794, stem: 20952, fault:2660. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1847 -[UP] flip: 2817, stem: 21272, fault:2527. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1776 -[UP] flip: 2316, stem: 22112, fault:2527. flip_cnt: 3, stem_cnt: 1436, fault_cnt:1769 -[UP] flip: 1663, stem: 23312, fault:2527. flip_cnt: 3, stem_cnt: 1436, fault_cnt:1766 -[UP] flip: 4007, stem: 22912, fault:2527. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1765 -[UP] flip: 4892, stem: 20270, fault:2508. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1750 -[UP] flip: 2597, stem: 20810, fault:2299. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1701 -[UP] flip: 2604, stem: 19351, fault:2223. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1674 -[UP] flip: 4359, stem: 20091, fault:2204. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1630 -[UP] flip: 2738, stem: 21052, fault:2204. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1628 -[UP] flip: 0, stem: 21533, fault:2204. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1627 -[UP] flip: 1046, stem: 22314, fault:2204. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1624 -[UP] flip: 4514, stem: 22793, fault:2204. flip_cnt: 4, stem_cnt: 1435, fault_cnt:1626 -[UP] flip: 1405, stem: 23234, fault:2204. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1624 -[UP] flip: 6801, stem: 23474, fault:2204. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1620 -[UP] flip: 1098, stem: 24235, fault:2185. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1619 -[UP] flip: 4160, stem: 24698, fault:2147. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1591 -[UP] flip: 0, stem: 23798, fault:2128. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1584 -[UP] flip: 0, stem: 24539, fault:2128. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1584 -[UP] flip: 0, stem: 24296, fault:2109. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1589 -[UP] flip: 5571, stem: 25356, fault:2109. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1587 -[UP] flip: 3809, stem: 26696, fault:2109. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1585 -[UP] flip: 0, stem: 26915, fault:2109. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1585 -[UP] flip: 3881, stem: 26955, fault:2109. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1582 -[UP] flip: 1550, stem: 26336, fault:2109. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1577 -[UP] flip: 2466, stem: 26237, fault:2109. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1575 -[UP] flip: 0, stem: 27237, fault:2109. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1572 -[UP] flip: 3256, stem: 25376, fault:2109. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1567 -[UP] flip: 3283, stem: 25976, fault:2109. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1565 -[UP] flip: 0, stem: 24956, fault:2109. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1548 -[UP] flip: 0, stem: 18156, fault:1691. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1160 -[UP] flip: 1140, stem: 18118, fault:1691. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1159 -[UP] flip: 0, stem: 18777, fault:1691. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1159 -[UP] flip: 2320, stem: 19495, fault:1691. flip_cnt: 4, stem_cnt: 1433, fault_cnt:1162 -[UP] flip: 6824, stem: 20535, fault:1786. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1203 -[UP] flip: 5111, stem: 17072, fault:2033. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1464 -[UP] flip: 3273, stem: 17371, fault:2527. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1752 -[UP] flip: 1226, stem: 18512, fault:2527. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1751 -[UP] flip: 1406, stem: 19693, fault:2527. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1750 -[UP] flip: 3120, stem: 20573, fault:2527. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1747 -[UP] flip: 5517, stem: 20653, fault:2527. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1737 -[UP] flip: 3700, stem: 21433, fault:2527. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1735 -[UP] flip: 0, stem: 22393, fault:2489. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1732 -[UP] flip: 0, stem: 21475, fault:2489. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1731 -[UP] flip: 4975, stem: 20396, fault:2489. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1726 -[UP] flip: 3214, stem: 21156, fault:2489. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1721 -[UP] flip: 3571, stem: 16823, fault:2451. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1690 -[UP] flip: 0, stem: 17724, fault:2508. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1706 -[UP] flip: 3286, stem: 18002, fault:2508. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1706 -[UP] flip: 0, stem: 18382, fault:2508. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1708 -[UP] flip: 6883, stem: 18742, fault:2470. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1681 -[UP] flip: 3440, stem: 19060, fault:2470. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1684 -[UP] flip: 3028, stem: 20700, fault:2470. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1684 -[UP] flip: 1484, stem: 20421, fault:2451. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1681 -[UP] flip: 5422, stem: 20821, fault:2451. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1678 -[UP] flip: 1571, stem: 21461, fault:2451. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1675 -[UP] flip: 0, stem: 22282, fault:2451. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1675 -[UP] flip: 0, stem: 22822, fault:2451. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1667 -[UP] flip: 0, stem: 23620, fault:2451. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1667 -[UP] flip: 0, stem: 24260, fault:2451. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1667 -[UP] flip: 3411, stem: 24480, fault:2451. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1664 -[UP] flip: 1448, stem: 25261, fault:2451. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1656 -[UP] flip: 0, stem: 26321, fault:2451. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1656 -[UP] flip: 1345, stem: 26422, fault:2451. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1655 -[UP] flip: 5716, stem: 27722, fault:2451. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1652 -[UP] flip: 1614, stem: 27422, fault:2451. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1649 -[UP] flip: 1710, stem: 25965, fault:2451. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1645 -[UP] flip: 2890, stem: 24966, fault:2432. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1639 -[UP] flip: 1557, stem: 23295, fault:2356. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1629 -[UP] flip: 3490, stem: 24455, fault:2356. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1627 -[UP] flip: 5913, stem: 25175, fault:2356. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1623 -[UP] flip: 3962, stem: 25153, fault:2356. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1626 -[UP] flip: 0, stem: 20390, fault:2394. flip_cnt: 0, stem_cnt: 1418, fault_cnt:1576 -[UP] flip: 2671, stem: 20851, fault:2394. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1574 -[UP] flip: 3345, stem: 20449, fault:2394. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1619 -[UP] flip: 5333, stem: 21388, fault:2394. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1615 -[UP] flip: 0, stem: 21126, fault:2375. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1607 -[UP] flip: 5363, stem: 22084, fault:2375. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1610 -[UP] flip: 5082, stem: 22484, fault:2375. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1646 -[UP] flip: 0, stem: 22323, fault:2508. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1654 -[UP] flip: 0, stem: 22761, fault:2508. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1654 -[UP] flip: 1087, stem: 24362, fault:2508. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1653 -[UP] flip: 2081, stem: 25162, fault:2508. flip_cnt: 3, stem_cnt: 1426, fault_cnt:1652 -[UP] flip: 3457, stem: 24003, fault:2508. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1589 -[UP] flip: 6448, stem: 23162, fault:2508. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1601 -[UP] flip: 0, stem: 23782, fault:2527. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1613 -[UP] flip: 2938, stem: 23960, fault:2527. flip_cnt: 4, stem_cnt: 1428, fault_cnt:1609 -[UP] flip: 3079, stem: 24660, fault:2527. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1603 -[UP] flip: 1663, stem: 25461, fault:2527. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1600 -[UP] flip: 0, stem: 25601, fault:2527. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1598 -[UP] flip: 1592, stem: 25982, fault:2470. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1593 -[UP] flip: 0, stem: 26263, fault:2470. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1593 -[UP] flip: 0, stem: 28043, fault:2470. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1593 -[UP] flip: 1515, stem: 25941, fault:2470. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1584 -[UP] flip: 7074, stem: 26522, fault:2432. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1580 -[UP] flip: 0, stem: 27262, fault:2432. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1577 -[UP] flip: 3727, stem: 27502, fault:2432. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1575 -[UP] flip: 4236, stem: 28562, fault:2641. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1732 -[UP] flip: 1309, stem: 28981, fault:2565. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1620 -[UP] flip: 6990, stem: 30001, fault:2565. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1618 -[UP] flip: 5525, stem: 30861, fault:2565. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1614 -[UP] flip: 5778, stem: 27122, fault:2565. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1608 -[UP] flip: 0, stem: 22422, fault:2546. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1576 -[UP] flip: 0, stem: 22003, fault:2546. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1570 -[UP] flip: 1465, stem: 22122, fault:2508. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1567 -[UP] flip: 0, stem: 22903, fault:2508. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1571 -[UP] flip: 7302, stem: 23383, fault:2489. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1567 -[UP] flip: 2613, stem: 23882, fault:2584. flip_cnt: 4, stem_cnt: 1426, fault_cnt:1584 -[UP] flip: 0, stem: 24702, fault:2584. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1595 -[UP] flip: 0, stem: 25042, fault:2584. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1595 -[UP] flip: 5253, stem: 25324, fault:2584. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1591 -[UP] flip: 2708, stem: 26005, fault:2584. flip_cnt: 4, stem_cnt: 1423, fault_cnt:1589 -[UP] flip: 6171, stem: 23641, fault:2641. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1555 -[UP] flip: 0, stem: 24481, fault:2641. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1551 -[UP] flip: 0, stem: 23982, fault:2641. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1547 -[UP] flip: 3129, stem: 24862, fault:2641. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1544 -[UP] flip: 0, stem: 25722, fault:2641. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1543 -[UP] flip: 3034, stem: 25423, fault:2584. flip_cnt: 4, stem_cnt: 1425, fault_cnt:1539 -[UP] flip: 5155, stem: 24482, fault:2584. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1542 -[UP] flip: 1582, stem: 24682, fault:2584. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1549 -[UP] flip: 5537, stem: 25281, fault:2584. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1547 -[UP] flip: 0, stem: 25881, fault:2584. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1547 -[UP] flip: 4273, stem: 28460, fault:2584. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1543 -[UP] flip: 6271, stem: 29700, fault:2584. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1533 -[UP] flip: 5496, stem: 30080, fault:2584. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1530 -[UP] flip: 5939, stem: 30400, fault:2584. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1526 -[UP] flip: 4470, stem: 16438, fault:2603. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1702 -[UP] flip: 0, stem: 18379, fault:2603. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1702 -[UP] flip: 0, stem: 19059, fault:2603. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1702 -[UP] flip: 3697, stem: 19919, fault:2603. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1700 -[UP] flip: 4230, stem: 20559, fault:2603. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1697 -[UP] flip: 1231, stem: 21340, fault:2603. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1694 -[UP] flip: 4173, stem: 21818, fault:2603. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1697 -[UP] flip: 5770, stem: 19840, fault:2489. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1547 -[UP] flip: 6802, stem: 21660, fault:2451. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1543 -[UP] flip: 1767, stem: 22820, fault:2451. flip_cnt: 3, stem_cnt: 1428, fault_cnt:1542 -[UP] flip: 5372, stem: 21138, fault:2565. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1582 -[UP] flip: 5509, stem: 22038, fault:2584. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1578 -[UP] flip: 0, stem: 22918, fault:2622. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1593 -[UP] flip: 1407, stem: 24317, fault:2622. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1596 -[UP] flip: 4713, stem: 24680, fault:2622. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1592 -[UP] flip: 4058, stem: 25600, fault:2318. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1430 -[UP] flip: 0, stem: 23700, fault:2261. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1400 -[UP] flip: 2451, stem: 25200, fault:2242. flip_cnt: 3, stem_cnt: 1428, fault_cnt:1399 -[UP] flip: 5605, stem: 26140, fault:2242. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1397 -[UP] flip: 5228, stem: 26440, fault:2242. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1395 -[UP] flip: 0, stem: 28020, fault:2242. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1395 -[UP] flip: 7103, stem: 28638, fault:2204. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1391 -[UP] flip: 1629, stem: 29478, fault:2204. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1390 -[UP] flip: 0, stem: 30858, fault:2204. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1388 -[UP] flip: 3492, stem: 31798, fault:2204. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1386 -[UP] flip: 0, stem: 32499, fault:2204. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1386 -[UP] flip: 3843, stem: 32939, fault:2185. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1382 -[UP] flip: 0, stem: 33599, fault:2166. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1368 -[UP] flip: 5278, stem: 27203, fault:1862. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1310 -[UP] flip: 3897, stem: 28843, fault:1862. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1308 -[UP] flip: 0, stem: 24162, fault:1843. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1279 -[UP] flip: 0, stem: 24961, fault:1843. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1279 -[UP] flip: 0, stem: 26122, fault:1976. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1335 -[UP] flip: 0, stem: 25622, fault:1976. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1346 -[UP] flip: 0, stem: 27062, fault:1976. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1346 -[UP] flip: 1313, stem: 26380, fault:1976. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1340 -[UP] flip: 1164, stem: 26280, fault:1976. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1337 -[UP] flip: 7595, stem: 25899, fault:2033. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1362 -[UP] flip: 0, stem: 26338, fault:2033. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1362 -[UP] flip: 0, stem: 27438, fault:2033. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1362 -[UP] flip: 0, stem: 26139, fault:2033. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1359 -[UP] flip: 0, stem: 26360, fault:2014. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1357 -[UP] flip: 4239, stem: 27980, fault:2014. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1353 -[UP] flip: 1161, stem: 27841, fault:2071. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1355 -[UP] flip: 0, stem: 28623, fault:2071. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1349 -[UP] flip: 5664, stem: 29222, fault:2071. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1352 -[UP] flip: 1419, stem: 29464, fault:1995. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1324 -[UP] flip: 0, stem: 26226, fault:1938. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1297 -[UP] flip: 4474, stem: 26707, fault:1919. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1294 -[UP] flip: 4915, stem: 26726, fault:1900. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1288 -[UP] flip: 0, stem: 22764, fault:1767. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1266 -[UP] flip: 2921, stem: 22383, fault:1767. flip_cnt: 4, stem_cnt: 1425, fault_cnt:1263 -[UP] flip: 0, stem: 23183, fault:1767. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1263 -[UP] flip: 6883, stem: 21921, fault:2242. flip_cnt: 6, stem_cnt: 1427, fault_cnt:1351 -[UP] flip: 1808, stem: 17524, fault:2261. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1354 -[UP] flip: 6905, stem: 17484, fault:2546. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1478 -[UP] flip: 4487, stem: 18425, fault:2432. flip_cnt: 7, stem_cnt: 1423, fault_cnt:1458 -[UP] flip: 4136, stem: 18946, fault:2413. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1406 -[UP] flip: 5814, stem: 19986, fault:2394. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1361 -[UP] flip: 1444, stem: 20606, fault:2394. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1358 -[UP] flip: 3342, stem: 20606, fault:2375. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1351 -[UP] flip: 3820, stem: 21064, fault:2394. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1354 -[UP] flip: 1315, stem: 21543, fault:2451. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1371 -[UP] flip: 3898, stem: 20800, fault:2508. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1400 -[UP] flip: 1387, stem: 21580, fault:2565. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1470 -[UP] flip: 7619, stem: 22060, fault:2527. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1466 -[UP] flip: 3032, stem: 22437, fault:2527. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1469 -[UP] flip: 965, stem: 23238, fault:2527. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1479 -[UP] flip: 2916, stem: 23619, fault:2527. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1477 -[UP] flip: 2953, stem: 24418, fault:2565. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1477 -[UP] flip: 0, stem: 24999, fault:2489. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1473 -[UP] flip: 2083, stem: 25940, fault:2470. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1470 -[UP] flip: 5332, stem: 26080, fault:2470. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1466 -[UP] flip: 6486, stem: 26500, fault:2470. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1464 -[UP] flip: 3129, stem: 26060, fault:2470. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1461 -[UP] flip: 1484, stem: 22783, fault:2166. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1408 -[UP] flip: 0, stem: 21739, fault:2261. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1454 -[UP] flip: 3266, stem: 21899, fault:2261. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1451 -[UP] flip: 2087, stem: 24298, fault:2261. flip_cnt: 3, stem_cnt: 1430, fault_cnt:1446 -[UP] flip: 0, stem: 25258, fault:2261. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1443 -[UP] flip: 5704, stem: 26098, fault:2261. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1441 -[UP] flip: 2723, stem: 24479, fault:2470. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1538 -[UP] flip: 0, stem: 25719, fault:2413. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1523 -[UP] flip: 3670, stem: 16618, fault:2527. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1635 -[UP] flip: 3624, stem: 17738, fault:2584. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1637 -[UP] flip: 4281, stem: 17998, fault:2584. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1629 -[UP] flip: 3430, stem: 19198, fault:2565. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1623 -[UP] flip: 4873, stem: 20098, fault:2565. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1617 -[UP] flip: 0, stem: 17738, fault:2394. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1474 -[UP] flip: 3322, stem: 18318, fault:2394. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1472 -[UP] flip: 3036, stem: 17939, fault:2394. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1470 -[UP] flip: 1408, stem: 18158, fault:2394. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1467 -[UP] flip: 0, stem: 20255, fault:2394. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1467 -[UP] flip: 5890, stem: 21035, fault:2375. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1463 -[UP] flip: 3179, stem: 21493, fault:2394. flip_cnt: 4, stem_cnt: 1435, fault_cnt:1466 -[UP] flip: 5355, stem: 21853, fault:2356. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1473 -[UP] flip: 4097, stem: 21552, fault:2318. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1464 -[UP] flip: 0, stem: 15247, fault:2413. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1649 -[UP] flip: 5757, stem: 15045, fault:2641. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1802 -[UP] flip: 1311, stem: 15785, fault:2622. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1751 -[UP] flip: 1455, stem: 16326, fault:2603. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1748 -[UP] flip: 2125, stem: 16567, fault:2603. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1745 -[UP] flip: 0, stem: 17847, fault:2603. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1745 -[UP] flip: 2510, stem: 17847, fault:2584. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1686 -[UP] flip: 1735, stem: 17527, fault:2584. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1685 -[UP] flip: 1420, stem: 16769, fault:2565. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1681 -[UP] flip: 4355, stem: 17269, fault:2565. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1677 -[UP] flip: 7697, stem: 15050, fault:2546. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1671 -[UP] flip: 3014, stem: 15651, fault:2546. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1667 -[UP] flip: 3311, stem: 16251, fault:2546. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1660 -[UP] flip: 1574, stem: 17472, fault:2489. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1655 -[UP] flip: 3653, stem: 18132, fault:2489. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1653 -[UP] flip: 3362, stem: 18553, fault:2489. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1649 -[UP] flip: 2976, stem: 15851, fault:2508. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1704 -[UP] flip: 5777, stem: 16771, fault:2508. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1700 -[UP] flip: 2352, stem: 17591, fault:2470. flip_cnt: 3, stem_cnt: 1437, fault_cnt:1697 -[UP] flip: 0, stem: 18391, fault:2470. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1697 -[UP] flip: 1636, stem: 19372, fault:2451. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1696 -[UP] flip: 2932, stem: 20213, fault:2451. flip_cnt: 4, stem_cnt: 1435, fault_cnt:1694 -[UP] flip: 3367, stem: 17069, fault:2470. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1697 -[UP] flip: 4882, stem: 17888, fault:2527. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1761 -[UP] flip: 1577, stem: 16851, fault:2546. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1786 -[UP] flip: 3933, stem: 17513, fault:2546. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1783 -[UP] flip: 0, stem: 18413, fault:2470. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1777 -[UP] flip: 1615, stem: 19394, fault:2470. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1776 -[UP] flip: 3295, stem: 19455, fault:2337. flip_cnt: 4, stem_cnt: 1433, fault_cnt:1654 -[UP] flip: 0, stem: 20195, fault:2337. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1643 -[UP] flip: 0, stem: 21376, fault:2337. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1643 -[UP] flip: 0, stem: 22717, fault:2337. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1643 -[UP] flip: 7602, stem: 23497, fault:2337. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1635 -[UP] flip: 0, stem: 23597, fault:2337. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1635 -[UP] flip: 0, stem: 24117, fault:2337. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1635 -[UP] flip: 3695, stem: 24757, fault:2337. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1633 -[UP] flip: 0, stem: 21620, fault:2261. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1612 -[UP] flip: 0, stem: 22280, fault:2261. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1612 -[UP] flip: 1456, stem: 20038, fault:2166. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1603 -[UP] flip: 1506, stem: 18898, fault:2147. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1602 -[UP] flip: 0, stem: 17238, fault:2166. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1607 -[UP] flip: 7513, stem: 16819, fault:2166. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1603 -[UP] flip: 7078, stem: 14854, fault:2185. flip_cnt: 6, stem_cnt: 1434, fault_cnt:1615 -[UP] flip: 2867, stem: 15217, fault:2166. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1622 -[UP] flip: 0, stem: 15917, fault:2071. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1599 -[UP] flip: 5088, stem: 16417, fault:2033. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1595 -[UP] flip: 2828, stem: 15716, fault:2014. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1624 -[UP] flip: 3790, stem: 14900, fault:1938. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1558 -[UP] flip: 3137, stem: 15379, fault:1938. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1543 -[UP] flip: 1513, stem: 15479, fault:2014. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1570 -[UP] flip: 5684, stem: 15859, fault:2014. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1566 -[UP] flip: 7830, stem: 15518, fault:1957. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1554 -[UP] flip: 0, stem: 15999, fault:1957. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1554 -[UP] flip: 6326, stem: 16599, fault:1957. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1552 -[UP] flip: 0, stem: 17899, fault:1957. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1552 -[UP] flip: 1419, stem: 17836, fault:1957. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1555 -[UP] flip: 2152, stem: 15674, fault:1995. flip_cnt: 3, stem_cnt: 1434, fault_cnt:1608 -[UP] flip: 7916, stem: 15136, fault:1995. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1606 -[UP] flip: 6304, stem: 15636, fault:1995. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1604 -[UP] flip: 7106, stem: 15935, fault:1995. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1610 -[UP] flip: 0, stem: 16595, fault:1995. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1610 -[UP] flip: 0, stem: 17477, fault:1995. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1610 -[UP] flip: 0, stem: 18437, fault:1995. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1610 -[UP] flip: 0, stem: 19397, fault:1995. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1610 -[UP] flip: 1998, stem: 19217, fault:1976. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1607 -[UP] flip: 5983, stem: 19537, fault:1976. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1605 -[UP] flip: 3042, stem: 19796, fault:1976. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1603 -[UP] flip: 0, stem: 23317, fault:1976. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1602 -[UP] flip: 3735, stem: 23417, fault:1957. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1619 -[UP] flip: 3359, stem: 22076, fault:1957. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1624 -[UP] flip: 1610, stem: 23097, fault:1957. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1612 -[UP] flip: 0, stem: 23717, fault:1957. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1612 -[UP] flip: 8185, stem: 22136, fault:1957. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1607 -[UP] flip: 3404, stem: 19076, fault:1957. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1596 -[UP] flip: 1555, stem: 16881, fault:1881. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1572 -[UP] flip: 0, stem: 17061, fault:1881. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1572 -[UP] flip: 1745, stem: 18262, fault:1862. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1571 -[UP] flip: 0, stem: 19284, fault:1862. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1571 -[UP] flip: 0, stem: 18862, fault:1862. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1571 -[UP] flip: 0, stem: 19361, fault:1862. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1571 -[UP] flip: 0, stem: 20401, fault:1862. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1571 -[UP] flip: 3718, stem: 20941, fault:1862. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1567 -[UP] flip: 3897, stem: 21381, fault:1862. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1543 -[UP] flip: 8409, stem: 20921, fault:1862. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1539 -[UP] flip: 0, stem: 21921, fault:1862. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1539 -[UP] flip: 5881, stem: 13875, fault:1862. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1451 -[UP] flip: 1308, stem: 14754, fault:1862. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1452 -[UP] flip: 3367, stem: 15857, fault:1824. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1436 -[UP] flip: 3520, stem: 17017, fault:1824. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1431 -[UP] flip: 0, stem: 17258, fault:1824. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1431 -[UP] flip: 2297, stem: 18098, fault:1824. flip_cnt: 3, stem_cnt: 1430, fault_cnt:1430 -[UP] flip: 7637, stem: 18038, fault:1824. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1426 -[UP] flip: 1799, stem: 19279, fault:1824. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1419 -[UP] flip: 8254, stem: 19599, fault:1786. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1414 -[UP] flip: 5418, stem: 20359, fault:1786. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1410 -[UP] flip: 1805, stem: 20319, fault:1938. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1513 -[UP] flip: 0, stem: 21199, fault:1938. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1513 -[UP] flip: 0, stem: 22160, fault:1938. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1513 -[UP] flip: 5425, stem: 22560, fault:1938. flip_cnt: 7, stem_cnt: 1428, fault_cnt:1509 -[UP] flip: 2015, stem: 23560, fault:1938. flip_cnt: 3, stem_cnt: 1428, fault_cnt:1499 -[UP] flip: 6227, stem: 24440, fault:1938. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1496 -[UP] flip: 4105, stem: 25160, fault:1938. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1494 -[UP] flip: 4653, stem: 25201, fault:1805. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1389 -[UP] flip: 0, stem: 25339, fault:1805. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1384 -[UP] flip: 6172, stem: 24660, fault:1805. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1377 -[UP] flip: 5997, stem: 25301, fault:1767. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1373 -[UP] flip: 3761, stem: 25759, fault:1900. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1484 -[UP] flip: 4468, stem: 25200, fault:1938. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1534 -[UP] flip: 1324, stem: 25481, fault:1938. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1537 -[UP] flip: 6416, stem: 25741, fault:1938. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1539 -[UP] flip: 3155, stem: 25581, fault:1976. flip_cnt: 4, stem_cnt: 1427, fault_cnt:1554 -[UP] flip: 1659, stem: 26062, fault:1976. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1560 -[UP] flip: 4402, stem: 20740, fault:1805. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1495 -[UP] flip: 6388, stem: 21920, fault:1805. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1493 -[UP] flip: 1720, stem: 22901, fault:1805. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1490 -[UP] flip: 1910, stem: 21025, fault:1767. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1538 -[UP] flip: 0, stem: 22045, fault:1767. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1538 -[UP] flip: 0, stem: 22126, fault:1767. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1535 -[UP] flip: 4290, stem: 22587, fault:1767. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1531 -[UP] flip: 0, stem: 23487, fault:1748. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1527 -[UP] flip: 7530, stem: 24347, fault:1748. flip_cnt: 7, stem_cnt: 1421, fault_cnt:1523 -[UP] flip: 0, stem: 25566, fault:1748. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1523 -[UP] flip: 0, stem: 25286, fault:1748. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1520 -[UP] flip: 0, stem: 26426, fault:1748. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1520 -[UP] flip: 5113, stem: 26647, fault:1748. flip_cnt: 7, stem_cnt: 1421, fault_cnt:1516 -[UP] flip: 0, stem: 27385, fault:1748. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1513 -[UP] flip: 1337, stem: 28184, fault:1748. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1516 -[UP] flip: 0, stem: 27644, fault:1748. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1524 -[UP] flip: 0, stem: 28364, fault:1748. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1524 -[UP] flip: 6186, stem: 29605, fault:1729. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1520 -[UP] flip: 1266, stem: 19488, fault:1767. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1417 -[UP] flip: 0, stem: 20788, fault:1767. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1417 -[UP] flip: 1604, stem: 22489, fault:1767. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1414 -[UP] flip: 1153, stem: 23891, fault:1767. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1411 -[UP] flip: 0, stem: 21528, fault:1767. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1404 -[UP] flip: 3395, stem: 20725, fault:1767. flip_cnt: 4, stem_cnt: 1423, fault_cnt:1402 -[UP] flip: 0, stem: 20645, fault:1824. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1427 -[UP] flip: 0, stem: 21405, fault:1824. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1427 -[UP] flip: 1588, stem: 22286, fault:1824. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1424 -[UP] flip: 1626, stem: 23006, fault:1824. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1423 -[UP] flip: 0, stem: 23206, fault:1824. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1421 -[UP] flip: 0, stem: 24467, fault:1824. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1421 -[UP] flip: 0, stem: 22023, fault:1900. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1505 -[UP] flip: 3685, stem: 20980, fault:1919. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1494 -[UP] flip: 4453, stem: 21618, fault:1919. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1497 -[UP] flip: 3102, stem: 23199, fault:1919. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1502 -[UP] flip: 0, stem: 23299, fault:1919. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1501 -[UP] flip: 0, stem: 24080, fault:1919. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1501 -[UP] flip: 1764, stem: 20357, fault:1976. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1571 -[UP] flip: 6286, stem: 21557, fault:1976. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1569 -[UP] flip: 5986, stem: 22377, fault:1976. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1565 -[UP] flip: 2525, stem: 23056, fault:1976. flip_cnt: 3, stem_cnt: 1432, fault_cnt:1566 -[UP] flip: 1863, stem: 21555, fault:1995. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1566 -[UP] flip: 5941, stem: 22335, fault:1995. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1563 -[UP] flip: 0, stem: 22915, fault:1995. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1563 -[UP] flip: 4525, stem: 25695, fault:1995. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1561 -[UP] flip: 2923, stem: 26556, fault:1919. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1503 -[UP] flip: 631, stem: 27457, fault:1919. flip_cnt: 1, stem_cnt: 1431, fault_cnt:1499 -[UP] flip: 0, stem: 26997, fault:2052. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1545 -[UP] flip: 4627, stem: 27317, fault:2052. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1542 -[UP] flip: 0, stem: 28457, fault:2052. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1542 -[UP] flip: 0, stem: 29678, fault:2052. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1542 -[UP] flip: 8117, stem: 27998, fault:2052. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1538 -[UP] flip: 0, stem: 26538, fault:2052. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1536 -[UP] flip: 0, stem: 27258, fault:2052. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1536 -[UP] flip: 1227, stem: 27460, fault:2052. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1533 -[UP] flip: 3849, stem: 27140, fault:2052. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1531 -[UP] flip: 3656, stem: 26277, fault:2014. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1521 -[UP] flip: 4100, stem: 25157, fault:1938. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1448 -[UP] flip: 1519, stem: 25217, fault:1957. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1489 -[UP] flip: 1213, stem: 22738, fault:1938. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1482 -[UP] flip: 6179, stem: 23898, fault:1938. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1507 -[UP] flip: 5735, stem: 23598, fault:1938. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1503 -[UP] flip: 5660, stem: 23338, fault:1919. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1498 -[UP] flip: 3695, stem: 23898, fault:1824. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1483 -[UP] flip: 0, stem: 23359, fault:1824. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1478 -[UP] flip: 5809, stem: 24419, fault:1824. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1474 -[UP] flip: 0, stem: 26039, fault:1824. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1467 -[UP] flip: 3776, stem: 25679, fault:1824. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1465 -[UP] flip: 0, stem: 27379, fault:1824. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1416 -[UP] flip: 6047, stem: 28259, fault:1824. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1412 -[UP] flip: 0, stem: 28259, fault:1824. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1400 -[UP] flip: 1635, stem: 22132, fault:2147. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1619 -[UP] flip: 3856, stem: 22690, fault:2147. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1622 -[UP] flip: 1878, stem: 23511, fault:2147. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1625 -[UP] flip: 1561, stem: 20973, fault:2147. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1617 -[UP] flip: 0, stem: 22573, fault:2147. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1617 -[UP] flip: 6223, stem: 22433, fault:2147. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1615 -[UP] flip: 0, stem: 22954, fault:2090. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1609 -[UP] flip: 0, stem: 23035, fault:2090. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1609 -[UP] flip: 6302, stem: 23355, fault:2090. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1606 -[UP] flip: 0, stem: 23975, fault:2090. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1606 -[UP] flip: 1736, stem: 24676, fault:2090. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1605 -[UP] flip: 2232, stem: 24715, fault:2090. flip_cnt: 3, stem_cnt: 1433, fault_cnt:1604 -[UP] flip: 0, stem: 18976, fault:1862. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1309 -[UP] flip: 0, stem: 20376, fault:1862. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1309 -[UP] flip: 0, stem: 21557, fault:1862. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1309 -[UP] flip: 2517, stem: 20198, fault:1824. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1305 -[UP] flip: 4043, stem: 19020, fault:1900. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1403 -[UP] flip: 1949, stem: 18019, fault:1900. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1410 -[UP] flip: 3536, stem: 18757, fault:1900. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1407 -[UP] flip: 2879, stem: 20497, fault:1900. flip_cnt: 3, stem_cnt: 1431, fault_cnt:1406 -[UP] flip: 3181, stem: 21278, fault:1900. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1404 -[UP] flip: 7731, stem: 22318, fault:1900. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1401 -[UP] flip: 5665, stem: 20836, fault:1862. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1406 -[UP] flip: 0, stem: 20876, fault:1862. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1407 -[UP] flip: 0, stem: 20178, fault:1862. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1404 -[UP] flip: 0, stem: 21199, fault:1862. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1404 -[UP] flip: 7732, stem: 22939, fault:1824. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1400 -[UP] flip: 0, stem: 21442, fault:1786. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1389 -[UP] flip: 6530, stem: 21863, fault:1786. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1387 -[UP] flip: 1476, stem: 22764, fault:1786. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1384 -[UP] flip: 0, stem: 15841, fault:1672. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1286 -[UP] flip: 6494, stem: 16761, fault:1672. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1284 -[UP] flip: 0, stem: 17861, fault:1672. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1284 -[UP] flip: 2006, stem: 18801, fault:1672. flip_cnt: 3, stem_cnt: 1427, fault_cnt:1283 -[UP] flip: 1290, stem: 15799, fault:1786. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1280 -[UP] flip: 1186, stem: 14481, fault:1710. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1254 -[UP] flip: 0, stem: 14338, fault:1710. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1254 -[UP] flip: 6392, stem: 15998, fault:1805. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1304 -[UP] flip: 5962, stem: 16418, fault:1805. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1300 -[UP] flip: 8336, stem: 16296, fault:1653. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1162 -[UP] flip: 0, stem: 16195, fault:1653. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1155 -[UP] flip: 0, stem: 17055, fault:1653. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1155 -[UP] flip: 3860, stem: 17116, fault:1653. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1160 -[UP] flip: 7214, stem: 17414, fault:1672. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1160 -[UP] flip: 6073, stem: 14556, fault:1919. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1465 -[UP] flip: 0, stem: 15477, fault:1919. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1465 -[UP] flip: 0, stem: 16256, fault:1919. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1465 -[UP] flip: 0, stem: 17797, fault:1919. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1465 -[UP] flip: 0, stem: 14713, fault:2052. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1528 -[UP] flip: 0, stem: 14832, fault:2052. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1528 -[UP] flip: 6866, stem: 15572, fault:2052. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1526 -[UP] flip: 0, stem: 15931, fault:2052. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1526 -[UP] flip: 0, stem: 16132, fault:2052. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1526 -[UP] flip: 0, stem: 17111, fault:2052. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1526 -[UP] flip: 1309, stem: 19431, fault:2033. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1525 -[UP] flip: 0, stem: 20051, fault:2033. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1523 -[UP] flip: 1048, stem: 20492, fault:2033. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1520 -[UP] flip: 0, stem: 21253, fault:2033. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1520 -[UP] flip: 1668, stem: 21095, fault:2014. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1515 -[UP] flip: 3383, stem: 22334, fault:2033. flip_cnt: 4, stem_cnt: 1434, fault_cnt:1516 -[UP] flip: 0, stem: 22494, fault:2071. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1520 -[UP] flip: 1863, stem: 19297, fault:2052. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1518 -[UP] flip: 0, stem: 20537, fault:2052. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1518 -[UP] flip: 6710, stem: 20917, fault:2033. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1515 -[UP] flip: 0, stem: 16918, fault:2014. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1511 -[UP] flip: 0, stem: 16238, fault:2014. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1511 -[UP] flip: 3799, stem: 15816, fault:2014. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1509 -[UP] flip: 0, stem: 16375, fault:1900. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1258 -[UP] flip: 6642, stem: 17235, fault:1900. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1256 -[UP] flip: 3497, stem: 15513, fault:2109. flip_cnt: 4, stem_cnt: 1435, fault_cnt:1557 -[UP] flip: 0, stem: 16133, fault:2109. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1557 -[UP] flip: 8697, stem: 15953, fault:2109. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1550 -[UP] flip: 0, stem: 16914, fault:2109. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1550 -[UP] flip: 6293, stem: 17112, fault:2109. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1540 -[UP] flip: 1706, stem: 17712, fault:2090. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1537 -[UP] flip: 2173, stem: 18732, fault:2090. flip_cnt: 3, stem_cnt: 1436, fault_cnt:1536 -[UP] flip: 4267, stem: 18592, fault:2090. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1544 -[UP] flip: 2136, stem: 18873, fault:2090. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1537 -[UP] flip: 2436, stem: 20153, fault:2090. flip_cnt: 3, stem_cnt: 1435, fault_cnt:1536 -[UP] flip: 0, stem: 18790, fault:2033. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1527 -[UP] flip: 4370, stem: 18628, fault:2033. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1528 -[UP] flip: 5904, stem: 19148, fault:2033. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1530 -[UP] flip: 6021, stem: 19288, fault:1919. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1463 -[UP] flip: 3827, stem: 19826, fault:1938. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1466 -[UP] flip: 0, stem: 20566, fault:1957. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1468 -[UP] flip: 0, stem: 18989, fault:2071. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1398 -[UP] flip: 3513, stem: 19730, fault:2052. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1396 -[UP] flip: 8221, stem: 21310, fault:2052. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1392 -[UP] flip: 1327, stem: 21929, fault:2052. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1391 -[UP] flip: 1623, stem: 22507, fault:2052. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1390 -[UP] flip: 0, stem: 23227, fault:2052. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1390 -[UP] flip: 1701, stem: 22208, fault:2052. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1383 -[UP] flip: 1946, stem: 20088, fault:2147. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1429 -[UP] flip: 5855, stem: 20366, fault:2185. flip_cnt: 4, stem_cnt: 1442, fault_cnt:1432 -[UP] flip: 0, stem: 22126, fault:2622. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1774 -[UP] flip: 4710, stem: 22425, fault:2622. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1776 -[UP] flip: 7979, stem: 22662, fault:2603. flip_cnt: 7, stem_cnt: 1446, fault_cnt:1798 -[UP] flip: 6280, stem: 23602, fault:2603. flip_cnt: 7, stem_cnt: 1446, fault_cnt:1794 -[UP] flip: 3613, stem: 22081, fault:2622. flip_cnt: 4, stem_cnt: 1447, fault_cnt:1797 -[UP] flip: 0, stem: 22781, fault:2622. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1801 -[UP] flip: 0, stem: 19619, fault:2774. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1889 -[UP] flip: 3896, stem: 20519, fault:2774. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1887 -[UP] flip: 8674, stem: 21019, fault:2774. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1883 -[UP] flip: 8355, stem: 21298, fault:2774. flip_cnt: 7, stem_cnt: 1450, fault_cnt:1879 -[UP] flip: 0, stem: 22478, fault:2774. flip_cnt: 0, stem_cnt: 1450, fault_cnt:1879 -[UP] flip: 7687, stem: 22018, fault:2774. flip_cnt: 7, stem_cnt: 1450, fault_cnt:1875 -[UP] flip: 1941, stem: 22219, fault:2774. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1867 -[UP] flip: 6059, stem: 21819, fault:2717. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1863 -[UP] flip: 6198, stem: 22439, fault:2603. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1851 -[UP] flip: 1715, stem: 21997, fault:2603. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1846 -[UP] flip: 3449, stem: 22078, fault:2603. flip_cnt: 4, stem_cnt: 1450, fault_cnt:1879 -[UP] flip: 4657, stem: 22258, fault:2451. flip_cnt: 7, stem_cnt: 1450, fault_cnt:1797 -[UP] flip: 6781, stem: 21276, fault:2432. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1786 -[UP] flip: 6088, stem: 21836, fault:2413. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1782 -[UP] flip: 0, stem: 20677, fault:2413. flip_cnt: 0, stem_cnt: 1451, fault_cnt:1782 -[UP] flip: 3149, stem: 20358, fault:2413. flip_cnt: 4, stem_cnt: 1450, fault_cnt:1780 -[UP] flip: 7234, stem: 19458, fault:2413. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1774 -[UP] flip: 1100, stem: 19260, fault:2413. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1766 -[UP] flip: 4618, stem: 19338, fault:2660. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1878 -[UP] flip: 4209, stem: 19498, fault:2660. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1867 -[UP] flip: 4877, stem: 18778, fault:2660. flip_cnt: 7, stem_cnt: 1450, fault_cnt:1868 -[UP] flip: 1043, stem: 18861, fault:2660. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1867 -[UP] flip: 6947, stem: 17060, fault:2622. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1862 -[UP] flip: 1296, stem: 15560, fault:2641. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1886 -[UP] flip: 3963, stem: 15480, fault:2641. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1884 -[UP] flip: 1399, stem: 16581, fault:2641. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1881 -[UP] flip: 6172, stem: 17180, fault:2641. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1879 -[UP] flip: 0, stem: 18379, fault:2641. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1888 -[UP] flip: 3564, stem: 18780, fault:2641. flip_cnt: 4, stem_cnt: 1448, fault_cnt:1886 -[UP] flip: 1749, stem: 18061, fault:2622. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1854 -[UP] flip: 5807, stem: 17941, fault:2622. flip_cnt: 7, stem_cnt: 1447, fault_cnt:1850 -[UP] flip: 2698, stem: 18161, fault:2603. flip_cnt: 3, stem_cnt: 1447, fault_cnt:1843 -[UP] flip: 2802, stem: 18621, fault:2603. flip_cnt: 3, stem_cnt: 1447, fault_cnt:1840 -[UP] flip: 8382, stem: 18342, fault:2565. flip_cnt: 7, stem_cnt: 1446, fault_cnt:1836 -[UP] flip: 2445, stem: 17822, fault:2584. flip_cnt: 3, stem_cnt: 1446, fault_cnt:1840 -[UP] flip: 2983, stem: 18442, fault:2584. flip_cnt: 3, stem_cnt: 1446, fault_cnt:1845 -[UP] flip: 6781, stem: 16522, fault:2584. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1843 -[UP] flip: 1458, stem: 15722, fault:2584. flip_cnt: 2, stem_cnt: 1446, fault_cnt:1840 -[UP] flip: 2169, stem: 15423, fault:2584. flip_cnt: 3, stem_cnt: 1445, fault_cnt:1839 -[UP] flip: 1571, stem: 16003, fault:2584. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1838 -[UP] flip: 1750, stem: 16240, fault:2584. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1840 -[UP] flip: 4685, stem: 16620, fault:2622. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1868 -[UP] flip: 1729, stem: 16318, fault:2641. flip_cnt: 2, stem_cnt: 1450, fault_cnt:1873 -[UP] flip: 1939, stem: 18699, fault:2717. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1896 -[UP] flip: 3804, stem: 16617, fault:2717. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1898 -[UP] flip: 1686, stem: 18236, fault:2736. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1906 -[UP] flip: 1852, stem: 18656, fault:2698. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1905 -[UP] flip: 3430, stem: 18736, fault:2698. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1902 -[UP] flip: 6061, stem: 18675, fault:2679. flip_cnt: 7, stem_cnt: 1453, fault_cnt:1896 -[UP] flip: 4816, stem: 18755, fault:2622. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1883 -[UP] flip: 0, stem: 17614, fault:2584. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1886 -[UP] flip: 3570, stem: 17954, fault:2584. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1882 -[UP] flip: 1303, stem: 18174, fault:2565. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1876 -[UP] flip: 1805, stem: 18614, fault:2546. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1873 -[UP] flip: 5207, stem: 17734, fault:2546. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1869 -[UP] flip: 7917, stem: 18534, fault:2546. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1914 -[UP] flip: 6749, stem: 17233, fault:2508. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1917 -[UP] flip: 7567, stem: 17753, fault:2489. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1915 -[UP] flip: 3911, stem: 16953, fault:2489. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1912 -[UP] flip: 7065, stem: 15974, fault:2489. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1908 -[UP] flip: 0, stem: 16993, fault:2489. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1908 -[UP] flip: 5224, stem: 16993, fault:2489. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1906 -[UP] flip: 3690, stem: 14011, fault:2527. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1923 -[UP] flip: 0, stem: 14651, fault:2527. flip_cnt: 0, stem_cnt: 1457, fault_cnt:1923 -[UP] flip: 7013, stem: 11411, fault:2527. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1921 -[UP] flip: 0, stem: 11771, fault:2489. flip_cnt: 0, stem_cnt: 1457, fault_cnt:1917 -[UP] flip: 1269, stem: 11351, fault:2508. flip_cnt: 2, stem_cnt: 1457, fault_cnt:1918 -[UP] flip: 6910, stem: 11811, fault:2527. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1936 -[UP] flip: 0, stem: 11710, fault:2527. flip_cnt: 0, stem_cnt: 1458, fault_cnt:1933 -[UP] flip: 3481, stem: 12291, fault:2527. flip_cnt: 4, stem_cnt: 1457, fault_cnt:1931 -[UP] flip: 1054, stem: 12452, fault:2527. flip_cnt: 2, stem_cnt: 1456, fault_cnt:1928 -[UP] flip: 2254, stem: 12092, fault:2527. flip_cnt: 3, stem_cnt: 1456, fault_cnt:1927 -[UP] flip: 0, stem: 13132, fault:2527. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1927 -[UP] flip: 1317, stem: 13213, fault:2508. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1924 -[UP] flip: 8932, stem: 13312, fault:2508. flip_cnt: 7, stem_cnt: 1456, fault_cnt:1924 -[UP] flip: 4007, stem: 12912, fault:2508. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1922 -[UP] flip: 3518, stem: 13052, fault:2527. flip_cnt: 4, stem_cnt: 1456, fault_cnt:1920 -[UP] flip: 6640, stem: 13512, fault:2546. flip_cnt: 7, stem_cnt: 1456, fault_cnt:1924 -[UP] flip: 0, stem: 13792, fault:2546. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1922 -[UP] flip: 2126, stem: 13253, fault:2527. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1919 -[UP] flip: 0, stem: 11073, fault:2584. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1938 -[UP] flip: 0, stem: 12093, fault:2584. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1938 -[UP] flip: 0, stem: 12074, fault:2584. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1938 -[UP] flip: 0, stem: 11975, fault:2584. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1938 -[UP] flip: 3802, stem: 10017, fault:2527. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1907 -[UP] flip: 7958, stem: 10957, fault:2527. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1903 -[UP] flip: 4393, stem: 10316, fault:2527. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1900 -[UP] flip: 0, stem: 9734, fault:2527. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1900 -[UP] flip: 5584, stem: 10113, fault:2527. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1896 -[UP] flip: 1215, stem: 10214, fault:2527. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1893 -[UP] flip: 4949, stem: 10453, fault:2565. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1918 -[UP] flip: 0, stem: 10232, fault:2622. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1925 -[UP] flip: 1714, stem: 11753, fault:2622. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1922 -[UP] flip: 1870, stem: 12794, fault:2622. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1921 -[UP] flip: 5484, stem: 12774, fault:2622. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1917 -[UP] flip: 0, stem: 12834, fault:2584. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1913 -[UP] flip: 6566, stem: 12394, fault:2584. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1909 -[UP] flip: 5283, stem: 12654, fault:2584. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1899 -[UP] flip: 4807, stem: 12594, fault:2584. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1897 -[UP] flip: 6109, stem: 12033, fault:2584. flip_cnt: 4, stem_cnt: 1455, fault_cnt:1896 -[UP] flip: 0, stem: 12453, fault:2622. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1919 -[UP] flip: 1960, stem: 12934, fault:2622. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1918 -[UP] flip: 1596, stem: 12873, fault:2622. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1919 -[UP] flip: 4812, stem: 12711, fault:2622. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1933 -[UP] flip: 4851, stem: 13193, fault:2622. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1923 -[UP] flip: 0, stem: 12832, fault:2641. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1950 -[UP] flip: 2976, stem: 10291, fault:2717. flip_cnt: 4, stem_cnt: 1457, fault_cnt:1959 -[UP] flip: 5417, stem: 10051, fault:2717. flip_cnt: 7, stem_cnt: 1457, fault_cnt:1949 -[UP] flip: 7815, stem: 10271, fault:2717. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1947 -[UP] flip: 0, stem: 10791, fault:2717. flip_cnt: 0, stem_cnt: 1457, fault_cnt:1947 -[UP] flip: 0, stem: 10731, fault:2717. flip_cnt: 0, stem_cnt: 1457, fault_cnt:1947 -[UP] flip: 1596, stem: 11192, fault:2717. flip_cnt: 2, stem_cnt: 1456, fault_cnt:1944 -[UP] flip: 4430, stem: 12032, fault:2717. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1942 -[UP] flip: 3075, stem: 13653, fault:2717. flip_cnt: 4, stem_cnt: 1455, fault_cnt:1934 -[UP] flip: 4752, stem: 13253, fault:2736. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1945 -[UP] flip: 0, stem: 12513, fault:2793. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1955 -[UP] flip: 6939, stem: 12533, fault:2793. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1953 -[UP] flip: 5968, stem: 12213, fault:2793. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1949 -[UP] flip: 6986, stem: 12713, fault:2793. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1945 -[UP] flip: 3891, stem: 12953, fault:2793. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1942 -[UP] flip: 0, stem: 12993, fault:2736. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1890 -[UP] flip: 3999, stem: 12693, fault:2736. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1887 -[UP] flip: 1651, stem: 12374, fault:2736. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1879 -[UP] flip: 0, stem: 11154, fault:2736. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1879 -[UP] flip: 7201, stem: 11713, fault:2717. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1875 -[UP] flip: 6898, stem: 12452, fault:2679. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1882 -[UP] flip: 5129, stem: 12572, fault:2679. flip_cnt: 7, stem_cnt: 1456, fault_cnt:1878 -[UP] flip: 6777, stem: 13252, fault:2584. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1854 -[UP] flip: 3220, stem: 13031, fault:2584. flip_cnt: 4, stem_cnt: 1457, fault_cnt:1855 -[UP] flip: 6204, stem: 12631, fault:2584. flip_cnt: 7, stem_cnt: 1457, fault_cnt:1856 -[UP] flip: 4848, stem: 12751, fault:2584. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1853 -[UP] flip: 3101, stem: 13172, fault:2584. flip_cnt: 4, stem_cnt: 1456, fault_cnt:1851 -[UP] flip: 0, stem: 13712, fault:2584. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1848 -[UP] flip: 3290, stem: 13570, fault:2603. flip_cnt: 4, stem_cnt: 1458, fault_cnt:1846 -[UP] flip: 3014, stem: 13828, fault:2622. flip_cnt: 4, stem_cnt: 1460, fault_cnt:1851 -[UP] flip: 4171, stem: 14068, fault:2527. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1769 -[UP] flip: 7200, stem: 14428, fault:2527. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1775 -[UP] flip: 1849, stem: 14109, fault:2527. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1772 -[UP] flip: 0, stem: 14489, fault:2527. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1778 -[UP] flip: 1733, stem: 14447, fault:2527. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1779 -[UP] flip: 2935, stem: 13887, fault:2812. flip_cnt: 4, stem_cnt: 1461, fault_cnt:1980 -[UP] flip: 0, stem: 14087, fault:2888. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1988 -[UP] flip: 6857, stem: 13067, fault:2869. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1985 -[UP] flip: 8103, stem: 12887, fault:2869. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1982 -[UP] flip: 4073, stem: 12787, fault:2869. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1978 -[UP] flip: 5872, stem: 12925, fault:2869. flip_cnt: 4, stem_cnt: 1463, fault_cnt:1979 -[UP] flip: 3693, stem: 13506, fault:2888. flip_cnt: 4, stem_cnt: 1462, fault_cnt:1994 -[UP] flip: 0, stem: 13486, fault:2888. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1991 -[UP] flip: 8272, stem: 13486, fault:2850. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1987 -[UP] flip: 1524, stem: 11006, fault:2926. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1986 -[UP] flip: 8240, stem: 10386, fault:2926. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1982 -[UP] flip: 3940, stem: 8987, fault:2926. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1979 -[UP] flip: 3421, stem: 9187, fault:2926. flip_cnt: 4, stem_cnt: 1461, fault_cnt:1976 -[UP] flip: 5068, stem: 8707, fault:2926. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1973 -[UP] flip: 9102, stem: 8926, fault:2926. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1967 -[UP] flip: 8798, stem: 10106, fault:2907. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1963 -[UP] flip: 4596, stem: 10266, fault:2907. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1961 -[UP] flip: 1379, stem: 9625, fault:2888. flip_cnt: 2, stem_cnt: 1463, fault_cnt:1947 -[UP] flip: 0, stem: 10126, fault:2888. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1945 -[UP] flip: 0, stem: 9727, fault:2888. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1945 -[UP] flip: 4265, stem: 10027, fault:2869. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1943 -[UP] flip: 6387, stem: 10907, fault:2850. flip_cnt: 7, stem_cnt: 1461, fault_cnt:1939 -[UP] flip: 0, stem: 10106, fault:2926. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1939 -[UP] flip: 5968, stem: 9586, fault:2869. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1935 -[UP] flip: 0, stem: 10606, fault:2869. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1933 -[UP] flip: 0, stem: 11666, fault:2869. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1933 -[UP] flip: 4035, stem: 11666, fault:2869. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1931 -[UP] flip: 0, stem: 11387, fault:2565. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1760 -[UP] flip: 0, stem: 10886, fault:2565. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1760 -[UP] flip: 1379, stem: 11287, fault:2565. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1757 -[UP] flip: 0, stem: 10928, fault:2565. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1768 -[UP] flip: 3966, stem: 10848, fault:2565. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1766 -[UP] flip: 0, stem: 10806, fault:2565. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1766 -[UP] flip: 1801, stem: 11486, fault:2546. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1794 -[UP] flip: 5992, stem: 11326, fault:2546. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1790 -[UP] flip: 0, stem: 11466, fault:2546. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1790 -[UP] flip: 1985, stem: 10185, fault:2489. flip_cnt: 2, stem_cnt: 1463, fault_cnt:1787 -[UP] flip: 5510, stem: 8284, fault:2546. flip_cnt: 7, stem_cnt: 1464, fault_cnt:1790 -[UP] flip: 7411, stem: 8342, fault:2546. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1792 -[UP] flip: 1599, stem: 8962, fault:2622. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1813 -[UP] flip: 3877, stem: 8640, fault:2622. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1816 -[UP] flip: 0, stem: 9140, fault:2641. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1834 -[UP] flip: 0, stem: 9020, fault:2641. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1834 -[UP] flip: 6227, stem: 9420, fault:2603. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1830 -[UP] flip: 3304, stem: 9761, fault:2603. flip_cnt: 4, stem_cnt: 1467, fault_cnt:1828 -[UP] flip: 4440, stem: 9899, fault:2603. flip_cnt: 5, stem_cnt: 1469, fault_cnt:1828 -[UP] flip: 3699, stem: 10239, fault:2603. flip_cnt: 4, stem_cnt: 1469, fault_cnt:1844 -[UP] flip: 1805, stem: 10139, fault:2603. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1844 -[UP] flip: 3252, stem: 9499, fault:2603. flip_cnt: 4, stem_cnt: 1469, fault_cnt:1853 -[UP] flip: 8846, stem: 10659, fault:2565. flip_cnt: 7, stem_cnt: 1469, fault_cnt:1857 -[UP] flip: 7628, stem: 11059, fault:2565. flip_cnt: 5, stem_cnt: 1469, fault_cnt:1855 -[UP] flip: 4985, stem: 11799, fault:2565. flip_cnt: 5, stem_cnt: 1469, fault_cnt:1853 -[UP] flip: 1697, stem: 11898, fault:2565. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1847 -[UP] flip: 6004, stem: 11139, fault:2850. flip_cnt: 7, stem_cnt: 1469, fault_cnt:2017 -[UP] flip: 0, stem: 11319, fault:2850. flip_cnt: 0, stem_cnt: 1469, fault_cnt:2017 -[UP] flip: 4038, stem: 10939, fault:2831. flip_cnt: 5, stem_cnt: 1469, fault_cnt:2015 -[UP] flip: 1678, stem: 10820, fault:2831. flip_cnt: 2, stem_cnt: 1468, fault_cnt:2012 -[UP] flip: 1602, stem: 9618, fault:2812. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2012 -[UP] flip: 6372, stem: 8218, fault:2964. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2050 -[UP] flip: 7064, stem: 8918, fault:2945. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2048 -[UP] flip: 2039, stem: 8558, fault:2945. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2049 -[UP] flip: 0, stem: 9198, fault:2964. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2058 -[UP] flip: 4310, stem: 8896, fault:2983. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2061 -[UP] flip: 1915, stem: 8277, fault:3078. flip_cnt: 2, stem_cnt: 1471, fault_cnt:2099 -[UP] flip: 1372, stem: 7678, fault:3078. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2096 -[UP] flip: 4815, stem: 7536, fault:3078. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2100 -[UP] flip: 9235, stem: 7936, fault:3059. flip_cnt: 7, stem_cnt: 1472, fault_cnt:2102 -[UP] flip: 5151, stem: 7156, fault:3040. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2099 -[UP] flip: 4068, stem: 7216, fault:3040. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2095 -[UP] flip: 3394, stem: 8356, fault:3040. flip_cnt: 4, stem_cnt: 1472, fault_cnt:2093 -[UP] flip: 2991, stem: 8215, fault:3078. flip_cnt: 4, stem_cnt: 1473, fault_cnt:2109 -[UP] flip: 6982, stem: 7173, fault:3116. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2121 -[UP] flip: 5915, stem: 7033, fault:3097. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2124 -[UP] flip: 0, stem: 7054, fault:3097. flip_cnt: 0, stem_cnt: 1474, fault_cnt:2127 -[UP] flip: 1815, stem: 5754, fault:3097. flip_cnt: 2, stem_cnt: 1474, fault_cnt:2124 -[UP] flip: 8091, stem: 6034, fault:3097. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2121 -[UP] flip: 5460, stem: 5874, fault:3078. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2118 -[UP] flip: 4075, stem: 5872, fault:3059. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2118 -[UP] flip: 4481, stem: 5752, fault:3040. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2140 -[UP] flip: 6941, stem: 6032, fault:3040. flip_cnt: 7, stem_cnt: 1476, fault_cnt:2130 -[UP] flip: 2038, stem: 6213, fault:3040. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2127 -[UP] flip: 7265, stem: 5833, fault:3021. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2124 -[UP] flip: 6387, stem: 6093, fault:3021. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2120 -[UP] flip: 4427, stem: 6733, fault:3021. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2118 -[UP] flip: 5029, stem: 6873, fault:3021. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2110 -[UP] flip: 3600, stem: 6733, fault:3021. flip_cnt: 5, stem_cnt: 1475, fault_cnt:2107 -[UP] flip: 3928, stem: 6734, fault:3021. flip_cnt: 4, stem_cnt: 1474, fault_cnt:2105 -[UP] flip: 3615, stem: 6795, fault:3021. flip_cnt: 4, stem_cnt: 1473, fault_cnt:2096 -[UP] flip: 1114, stem: 7816, fault:3021. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2090 -[UP] flip: 3086, stem: 7176, fault:3002. flip_cnt: 4, stem_cnt: 1472, fault_cnt:2088 -[UP] flip: 3314, stem: 6377, fault:3021. flip_cnt: 4, stem_cnt: 1471, fault_cnt:2092 -[UP] flip: 6289, stem: 6697, fault:3021. flip_cnt: 7, stem_cnt: 1471, fault_cnt:2085 -[UP] flip: 5108, stem: 6237, fault:2850. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2006 -[UP] flip: 4094, stem: 5697, fault:2850. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2002 -[UP] flip: 2311, stem: 7397, fault:2831. flip_cnt: 3, stem_cnt: 1471, fault_cnt:1973 -[UP] flip: 2563, stem: 6757, fault:2831. flip_cnt: 3, stem_cnt: 1471, fault_cnt:1970 -[UP] flip: 1825, stem: 7338, fault:2831. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1967 -[UP] flip: 4780, stem: 6938, fault:2812. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1965 -[UP] flip: 6158, stem: 5858, fault:2774. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1961 -[UP] flip: 1928, stem: 6919, fault:2717. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1958 -[UP] flip: 2053, stem: 6380, fault:2717. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1957 -[UP] flip: 5941, stem: 6480, fault:2717. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1953 -[UP] flip: 2188, stem: 5520, fault:2584. flip_cnt: 3, stem_cnt: 1468, fault_cnt:1886 -[UP] flip: 4956, stem: 7580, fault:2584. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1884 -[UP] flip: 4656, stem: 8739, fault:2869. flip_cnt: 5, stem_cnt: 1469, fault_cnt:2021 -[UP] flip: 2066, stem: 7660, fault:2869. flip_cnt: 2, stem_cnt: 1468, fault_cnt:2018 -[UP] flip: 0, stem: 6561, fault:2869. flip_cnt: 0, stem_cnt: 1467, fault_cnt:2018 -[UP] flip: 4551, stem: 6081, fault:2869. flip_cnt: 5, stem_cnt: 1467, fault_cnt:2016 -[UP] flip: 2268, stem: 6761, fault:2869. flip_cnt: 3, stem_cnt: 1467, fault_cnt:2013 -[UP] flip: 6474, stem: 7101, fault:2869. flip_cnt: 7, stem_cnt: 1467, fault_cnt:2011 -[UP] flip: 4875, stem: 7121, fault:2869. flip_cnt: 5, stem_cnt: 1467, fault_cnt:2000 -[UP] flip: 4653, stem: 7200, fault:2869. flip_cnt: 2, stem_cnt: 1468, fault_cnt:2001 -[UP] flip: 0, stem: 7380, fault:2888. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2012 -[UP] flip: 0, stem: 7400, fault:2888. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2012 -[UP] flip: 8890, stem: 7959, fault:2907. flip_cnt: 7, stem_cnt: 1469, fault_cnt:2026 -[UP] flip: 6091, stem: 7839, fault:2907. flip_cnt: 7, stem_cnt: 1469, fault_cnt:2022 -[UP] flip: 6104, stem: 7338, fault:2850. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2004 -[UP] flip: 0, stem: 6897, fault:2812. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1984 -[UP] flip: 1766, stem: 6297, fault:2812. flip_cnt: 2, stem_cnt: 1471, fault_cnt:1985 -[UP] flip: 0, stem: 6698, fault:2869. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2002 -[UP] flip: 7500, stem: 7718, fault:2869. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2004 -[UP] flip: 0, stem: 7336, fault:2869. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2004 -[UP] flip: 0, stem: 7577, fault:2869. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2004 -[UP] flip: 1413, stem: 6718, fault:2869. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2001 -[UP] flip: 7343, stem: 7198, fault:2869. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2005 -[UP] flip: 8194, stem: 7458, fault:2869. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2003 -[UP] flip: 0, stem: 7358, fault:2869. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2003 -[UP] flip: 5667, stem: 6417, fault:2869. flip_cnt: 7, stem_cnt: 1471, fault_cnt:1999 -[UP] flip: 1651, stem: 6615, fault:2964. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2037 -[UP] flip: 0, stem: 6956, fault:2964. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2037 -[UP] flip: 2626, stem: 6457, fault:2964. flip_cnt: 3, stem_cnt: 1471, fault_cnt:2036 -[UP] flip: 3355, stem: 5236, fault:2964. flip_cnt: 4, stem_cnt: 1472, fault_cnt:2037 -[UP] flip: 1222, stem: 4675, fault:3040. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2093 -[UP] flip: 2635, stem: 3732, fault:3059. flip_cnt: 3, stem_cnt: 1476, fault_cnt:2112 -[UP] flip: 4993, stem: 3110, fault:3059. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2117 -[UP] flip: 2839, stem: 3230, fault:3078. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2120 -[UP] flip: 5929, stem: 3531, fault:3059. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2115 -[UP] flip: 7848, stem: 2991, fault:3040. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2108 -[UP] flip: 4370, stem: 3110, fault:3040. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2107 -[UP] flip: 1403, stem: 2790, fault:3040. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2104 -[UP] flip: 2609, stem: 3430, fault:3040. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2099 -[UP] flip: 5944, stem: 3650, fault:3040. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2095 -[UP] flip: 5003, stem: 3610, fault:3040. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2092 -[UP] flip: 4107, stem: 5290, fault:3040. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2089 -[UP] flip: 2578, stem: 5270, fault:3040. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2087 -[UP] flip: 1835, stem: 3630, fault:3097. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2095 -[UP] flip: 3600, stem: 2830, fault:3097. flip_cnt: 4, stem_cnt: 1478, fault_cnt:2093 -[UP] flip: 2594, stem: 2990, fault:3116. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2102 -[UP] flip: 2821, stem: 4170, fault:3116. flip_cnt: 3, stem_cnt: 1478, fault_cnt:2099 -[UP] flip: 4213, stem: 4050, fault:3116. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2095 -[UP] flip: 3772, stem: 4011, fault:3116. flip_cnt: 4, stem_cnt: 1477, fault_cnt:2092 -[UP] flip: 6147, stem: 3151, fault:3230. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2104 -[UP] flip: 0, stem: 3351, fault:3230. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2104 -[UP] flip: 3279, stem: 3352, fault:3211. flip_cnt: 4, stem_cnt: 1476, fault_cnt:2102 -[UP] flip: 7083, stem: 5172, fault:3097. flip_cnt: 7, stem_cnt: 1476, fault_cnt:2078 -[UP] flip: 4223, stem: 5230, fault:3097. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2075 -[UP] flip: 4579, stem: 2550, fault:3192. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2101 -[UP] flip: 7703, stem: 2650, fault:3192. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2099 -[UP] flip: 1741, stem: 2850, fault:3135. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2096 -[UP] flip: 7580, stem: 3210, fault:3135. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2094 -[UP] flip: 2066, stem: 3971, fault:3135. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2091 -[UP] flip: 0, stem: 4251, fault:3135. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2091 -[UP] flip: 1728, stem: 5011, fault:3135. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2088 -[UP] flip: 1882, stem: 4671, fault:3154. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2089 -[UP] flip: 2664, stem: 4191, fault:3173. flip_cnt: 3, stem_cnt: 1477, fault_cnt:2094 -[UP] flip: 4936, stem: 3871, fault:3173. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2092 -[UP] flip: 3318, stem: 3771, fault:3173. flip_cnt: 4, stem_cnt: 1477, fault_cnt:2090 -[UP] flip: 3208, stem: 3831, fault:3173. flip_cnt: 3, stem_cnt: 1477, fault_cnt:2113 -[UP] flip: 0, stem: 2830, fault:3173. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2113 -[UP] flip: 6665, stem: 2510, fault:3154. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2109 -[UP] flip: 7502, stem: 2230, fault:3059. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2046 -[UP] flip: 6452, stem: 2390, fault:3040. flip_cnt: 7, stem_cnt: 1478, fault_cnt:2048 -[UP] flip: 4944, stem: 1908, fault:3040. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2052 -[UP] flip: 3152, stem: 2008, fault:3040. flip_cnt: 3, stem_cnt: 1480, fault_cnt:2056 -[UP] flip: 0, stem: 3668, fault:3040. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2056 -[UP] flip: 0, stem: 2989, fault:3040. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2056 -[UP] flip: 3421, stem: 2590, fault:3040. flip_cnt: 4, stem_cnt: 1478, fault_cnt:2054 -[UP] flip: 8008, stem: 4110, fault:3040. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2050 -[UP] flip: 5059, stem: 3988, fault:3059. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2054 -[UP] flip: 1592, stem: 2909, fault:3363. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2076 -[UP] flip: 4863, stem: 2889, fault:3363. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2073 -[UP] flip: 7762, stem: 2809, fault:3344. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2067 -[UP] flip: 0, stem: 2369, fault:3344. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2067 -[UP] flip: 4518, stem: 2469, fault:3325. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2065 -[UP] flip: 1967, stem: 2889, fault:3325. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2064 -[UP] flip: 0, stem: 2789, fault:3325. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2064 -[UP] flip: 3954, stem: 2787, fault:3344. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2067 -[UP] flip: 2305, stem: 2928, fault:3420. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2107 -[UP] flip: 4641, stem: 3608, fault:3420. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2105 -[UP] flip: 1918, stem: 2949, fault:3420. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2102 -[UP] flip: 0, stem: 3169, fault:3420. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2102 -[UP] flip: 10011, stem: 3249, fault:3420. flip_cnt: 7, stem_cnt: 1479, fault_cnt:2098 -[UP] flip: 667, stem: 2146, fault:3420. flip_cnt: 1, stem_cnt: 1482, fault_cnt:2101 -[UP] flip: 3235, stem: 3306, fault:3439. flip_cnt: 3, stem_cnt: 1482, fault_cnt:2157 -[UP] flip: 3864, stem: 2406, fault:3439. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2155 -[UP] flip: 3972, stem: 3287, fault:3458. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2163 -[UP] flip: 3470, stem: 3106, fault:3458. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2150 -[UP] flip: 6575, stem: 3806, fault:3458. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2151 -[UP] flip: 2033, stem: 3966, fault:3458. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2150 -[UP] flip: 4971, stem: 3526, fault:3458. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2151 -[UP] flip: 0, stem: 3546, fault:3458. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2149 -[UP] flip: 3808, stem: 2305, fault:3458. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2150 -[UP] flip: 0, stem: 1525, fault:3477. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2155 -[UP] flip: 2866, stem: 1785, fault:3477. flip_cnt: 3, stem_cnt: 1483, fault_cnt:2154 -[UP] flip: 2594, stem: 2445, fault:3477. flip_cnt: 3, stem_cnt: 1483, fault_cnt:2152 -[UP] flip: 2039, stem: 2245, fault:3477. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2166 -[UP] flip: 2953, stem: 2125, fault:3477. flip_cnt: 3, stem_cnt: 1483, fault_cnt:2163 -[UP] flip: 6844, stem: 2345, fault:3477. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2159 -[UP] flip: 3708, stem: 3326, fault:3477. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2157 -[UP] flip: 1663, stem: 3266, fault:3477. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2155 -[UP] flip: 0, stem: 3226, fault:3477. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2153 -[UP] flip: 0, stem: 3446, fault:3477. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2153 -[UP] flip: 0, stem: 3646, fault:3477. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2153 -[UP] flip: 8906, stem: 2464, fault:3496. flip_cnt: 6, stem_cnt: 1484, fault_cnt:2157 -[UP] flip: 2319, stem: 2405, fault:3477. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2157 -[UP] flip: 4666, stem: 2224, fault:3477. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2160 -[UP] flip: 1928, stem: 1465, fault:3477. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2155 -[UP] flip: 10090, stem: 1224, fault:3477. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2151 -[UP] flip: 0, stem: 2225, fault:3477. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2157 -[UP] flip: 1935, stem: 1265, fault:3477. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2154 -[UP] flip: 4763, stem: 1265, fault:3477. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2151 -[UP] flip: 0, stem: 1305, fault:3420. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2139 -[UP] flip: 3549, stem: 1445, fault:3420. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2136 -[UP] flip: 0, stem: 2145, fault:3420. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2136 -[UP] flip: 0, stem: 1506, fault:3420. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2136 -[UP] flip: 0, stem: 2065, fault:3420. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2136 -[UP] flip: 0, stem: 2326, fault:3420. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2136 -[UP] flip: 2401, stem: 2186, fault:3420. flip_cnt: 3, stem_cnt: 1482, fault_cnt:2137 -[UP] flip: 0, stem: 2306, fault:3420. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2139 -[UP] flip: 1706, stem: 2266, fault:3420. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2140 -[UP] flip: 0, stem: 3126, fault:3420. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2140 -[UP] flip: 1706, stem: 3826, fault:3420. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2139 -[UP] flip: 0, stem: 3106, fault:3420. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2139 -[UP] flip: 3387, stem: 2465, fault:3420. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2140 -[UP] flip: 2882, stem: 2243, fault:3572. flip_cnt: 3, stem_cnt: 1485, fault_cnt:2165 -[UP] flip: 3788, stem: 2283, fault:3591. flip_cnt: 4, stem_cnt: 1485, fault_cnt:2168 -[UP] flip: 5120, stem: 2645, fault:3572. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2167 -[UP] flip: 0, stem: 2705, fault:3534. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2165 -[UP] flip: 0, stem: 2725, fault:3534. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2165 -[UP] flip: 8964, stem: 562, fault:3553. flip_cnt: 6, stem_cnt: 1486, fault_cnt:2169 -[UP] flip: 10143, stem: 282, fault:3534. flip_cnt: 7, stem_cnt: 1486, fault_cnt:2167 -[UP] flip: 1679, stem: 1281, fault:3534. flip_cnt: 2, stem_cnt: 1487, fault_cnt:2168 -[UP] flip: 1781, stem: 2104, fault:3534. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2177 -[UP] flip: 4100, stem: 2484, fault:3534. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2166 -[UP] flip: 7468, stem: 3044, fault:3534. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2161 -[UP] flip: 1783, stem: 2443, fault:3610. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2170 -[UP] flip: 4133, stem: 1983, fault:3610. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2175 -[UP] flip: 7505, stem: 2543, fault:3572. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2170 -[UP] flip: 2356, stem: 2903, fault:3572. flip_cnt: 3, stem_cnt: 1485, fault_cnt:2171 -[UP] flip: 4910, stem: 3543, fault:3572. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2174 -[UP] flip: 1841, stem: 3083, fault:3572. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2175 -[UP] flip: 7516, stem: 1481, fault:3610. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2180 -[UP] flip: 6664, stem: 2623, fault:3572. flip_cnt: 4, stem_cnt: 1485, fault_cnt:2183 -[UP] flip: 4293, stem: 2643, fault:3515. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2164 -[UP] flip: 7825, stem: 3743, fault:3496. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2160 -[UP] flip: 1890, stem: 2743, fault:3496. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2161 -[UP] flip: 4231, stem: 1643, fault:3496. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2171 -[UP] flip: 1621, stem: 1703, fault:3496. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2172 -[UP] flip: 2050, stem: 2004, fault:3439. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2170 -[UP] flip: 6780, stem: 2144, fault:3439. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2166 -[UP] flip: 5187, stem: 2604, fault:3439. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2162 -[UP] flip: 1397, stem: 2545, fault:3439. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2159 -[UP] flip: 9719, stem: 2565, fault:3382. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2155 -[UP] flip: 6303, stem: 2445, fault:3382. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2151 -[UP] flip: 2917, stem: 2984, fault:3420. flip_cnt: 3, stem_cnt: 1484, fault_cnt:2168 -[UP] flip: 2578, stem: 2044, fault:3420. flip_cnt: 3, stem_cnt: 1484, fault_cnt:2167 -[UP] flip: 3838, stem: 2665, fault:3401. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2165 -[UP] flip: 0, stem: 2705, fault:3401. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2165 -[UP] flip: 4538, stem: 2505, fault:3382. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2163 -[UP] flip: 2096, stem: 2546, fault:3325. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2160 -[UP] flip: 1938, stem: 2485, fault:3306. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2157 -[UP] flip: 0, stem: 644, fault:3306. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2161 -[UP] flip: 0, stem: 1084, fault:3306. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2161 -[UP] flip: 6537, stem: 1224, fault:3268. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2157 -[UP] flip: 1381, stem: 963, fault:3268. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2158 -[UP] flip: 5213, stem: 1203, fault:3268. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2161 -[UP] flip: 0, stem: 943, fault:3268. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2154 -[UP] flip: 0, stem: 803, fault:3268. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2154 -[UP] flip: 3520, stem: 804, fault:3268. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2152 -[UP] flip: 5062, stem: 664, fault:3268. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2145 -[UP] flip: 0, stem: 784, fault:3268. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2143 -[UP] flip: 3267, stem: 482, fault:3287. flip_cnt: 4, stem_cnt: 1486, fault_cnt:2146 -[UP] flip: 4477, stem: 2464, fault:3591. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2168 -[UP] flip: 4481, stem: 562, fault:3610. flip_cnt: 4, stem_cnt: 1486, fault_cnt:2164 -[UP] flip: 9488, stem: 764, fault:3610. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2167 -[UP] flip: 6686, stem: 824, fault:3610. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2161 -[UP] flip: 0, stem: 1004, fault:3610. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2161 -[UP] flip: 4901, stem: 201, fault:3610. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2164 -[UP] flip: 7971, stem: 4303, fault:3610. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2169 -[UP] flip: 1919, stem: 4604, fault:3534. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2160 -[UP] flip: 6697, stem: 5264, fault:3515. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2156 -[UP] flip: 0, stem: 4644, fault:3515. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2156 -[UP] flip: 1923, stem: 383, fault:3515. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2157 -[UP] flip: 0, stem: 1063, fault:3591. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2180 -[UP] flip: 2915, stem: 1163, fault:3591. flip_cnt: 3, stem_cnt: 1485, fault_cnt:2179 -[UP] flip: 2639, stem: 1703, fault:3591. flip_cnt: 3, stem_cnt: 1485, fault_cnt:2177 -[UP] flip: 1964, stem: 1044, fault:3591. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2176 -[UP] flip: 4837, stem: 1864, fault:3591. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2174 -[UP] flip: 0, stem: 1944, fault:3515. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2159 -[UP] flip: 678, stem: 1303, fault:3515. flip_cnt: 1, stem_cnt: 1485, fault_cnt:2162 -[UP] flip: 4842, stem: 461, fault:3610. flip_cnt: 5, stem_cnt: 1487, fault_cnt:2180 -[UP] flip: 8359, stem: 2003, fault:3553. flip_cnt: 7, stem_cnt: 1485, fault_cnt:2182 -[UP] flip: 8794, stem: 1383, fault:3496. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2174 -[UP] flip: 2468, stem: 2524, fault:3477. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2171 -[UP] flip: 6341, stem: 2344, fault:3477. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2168 -[UP] flip: 5664, stem: 2204, fault:3477. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2166 -[UP] flip: 0, stem: 2824, fault:3477. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2160 -[UP] flip: 2341, stem: 2725, fault:3477. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2157 -[UP] flip: 10808, stem: 3085, fault:3477. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2153 -[UP] flip: 8226, stem: 3605, fault:3477. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2149 -[UP] flip: 2561, stem: 4426, fault:3477. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2124 -[UP] flip: 11322, stem: 5146, fault:3477. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2120 -[UP] flip: 8933, stem: 4726, fault:3477. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2118 -[UP] flip: 2290, stem: 5827, fault:3477. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2115 -[UP] flip: 3558, stem: 6447, fault:3439. flip_cnt: 3, stem_cnt: 1481, fault_cnt:2112 -[UP] flip: 0, stem: 7008, fault:3439. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2112 -[UP] flip: 8423, stem: 6108, fault:3401. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2109 -[UP] flip: 5423, stem: 5088, fault:3401. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2107 -[UP] flip: 4512, stem: 6389, fault:3401. flip_cnt: 4, stem_cnt: 1479, fault_cnt:2105 -[UP] flip: 8008, stem: 4868, fault:3401. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2102 -[UP] flip: 5839, stem: 5168, fault:3401. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2099 -[UP] flip: 0, stem: 5429, fault:3401. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2093 -[UP] flip: 2406, stem: 5288, fault:3382. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2090 -[UP] flip: 11281, stem: 4588, fault:3382. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2086 -[UP] flip: 0, stem: 5308, fault:3382. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2086 -[UP] flip: 0, stem: 4948, fault:3382. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2086 -[UP] flip: 0, stem: 6049, fault:3382. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2086 -[UP] flip: 0, stem: 5929, fault:3382. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2086 -[UP] flip: 5579, stem: 5489, fault:3382. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2084 -[UP] flip: 2471, stem: 4848, fault:3382. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2066 -[UP] flip: 10744, stem: 5488, fault:3382. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2075 -[UP] flip: 5651, stem: 4548, fault:3382. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2073 -[UP] flip: 2569, stem: 5229, fault:3382. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2070 -[UP] flip: 0, stem: 6070, fault:3382. flip_cnt: 0, stem_cnt: 1478, fault_cnt:2070 -[UP] flip: 9008, stem: 7330, fault:3382. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2066 -[UP] flip: 2411, stem: 7871, fault:3325. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2063 -[UP] flip: 10970, stem: 8372, fault:3287. flip_cnt: 7, stem_cnt: 1476, fault_cnt:2059 -[UP] flip: 2204, stem: 8431, fault:3287. flip_cnt: 2, stem_cnt: 1477, fault_cnt:2060 -[UP] flip: 7861, stem: 7431, fault:3287. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2071 -[UP] flip: 5330, stem: 6291, fault:3287. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2069 -[UP] flip: 0, stem: 7611, fault:3287. flip_cnt: 0, stem_cnt: 1477, fault_cnt:2066 -[UP] flip: 8423, stem: 8031, fault:3287. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2062 -[UP] flip: 5594, stem: 5607, fault:3287. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2064 -[UP] flip: 8494, stem: 5127, fault:3420. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2134 -[UP] flip: 2406, stem: 5308, fault:3401. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2131 -[UP] flip: 8090, stem: 4687, fault:3401. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2143 -[UP] flip: 2228, stem: 3328, fault:3401. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2139 -[UP] flip: 0, stem: 2286, fault:3401. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2139 -[UP] flip: 8477, stem: 2786, fault:3401. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2135 -[UP] flip: 10497, stem: 4146, fault:3401. flip_cnt: 7, stem_cnt: 1482, fault_cnt:2125 -[UP] flip: 4948, stem: 3166, fault:3401. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2123 -[UP] flip: 2576, stem: 2967, fault:3401. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2117 -[UP] flip: 10456, stem: 3307, fault:3382. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2113 -[UP] flip: 0, stem: 3047, fault:3382. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2113 -[UP] flip: 7391, stem: 1886, fault:3401. flip_cnt: 4, stem_cnt: 1482, fault_cnt:2116 -[UP] flip: 0, stem: 1747, fault:3458. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2119 -[UP] flip: 0, stem: 2988, fault:3458. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2119 -[UP] flip: 0, stem: 3988, fault:3458. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2119 -[UP] flip: 9070, stem: 5208, fault:3458. flip_cnt: 5, stem_cnt: 1480, fault_cnt:2115 -[UP] flip: 2502, stem: 5649, fault:3401. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2112 -[UP] flip: 5677, stem: 5789, fault:3401. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2114 -[UP] flip: 4958, stem: 5147, fault:3439. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2129 -[UP] flip: 8437, stem: 5027, fault:3515. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2141 -[UP] flip: 8540, stem: 4687, fault:3515. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2137 -[UP] flip: 7896, stem: 3647, fault:3515. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2133 -[UP] flip: 0, stem: 2347, fault:3515. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2133 -[UP] flip: 0, stem: 3007, fault:3515. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2133 -[UP] flip: 2227, stem: 2847, fault:3477. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2130 -[UP] flip: 2307, stem: 3708, fault:3477. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2127 -[UP] flip: 0, stem: 3188, fault:3477. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2127 -[UP] flip: 3478, stem: 2127, fault:3477. flip_cnt: 3, stem_cnt: 1481, fault_cnt:2126 -[UP] flip: 8658, stem: 2547, fault:3477. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2124 -[UP] flip: 4514, stem: 2707, fault:3477. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2122 -[UP] flip: 2435, stem: 3868, fault:3534. flip_cnt: 2, stem_cnt: 1480, fault_cnt:2124 -[UP] flip: 6061, stem: 2866, fault:3610. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2153 -[UP] flip: 8945, stem: 2306, fault:3610. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2157 -[UP] flip: 2479, stem: 2786, fault:3610. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2154 -[UP] flip: 5891, stem: 3546, fault:3610. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2152 -[UP] flip: 2235, stem: 2567, fault:3553. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2143 -[UP] flip: 8661, stem: 4007, fault:3534. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2139 -[UP] flip: 8995, stem: 4227, fault:3534. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2137 -[UP] flip: 3947, stem: 4347, fault:3553. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2135 -[UP] flip: 4981, stem: 3346, fault:3534. flip_cnt: 5, stem_cnt: 1482, fault_cnt:2153 -[UP] flip: 1920, stem: 4687, fault:3534. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2150 -[UP] flip: 11198, stem: 5027, fault:3496. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2146 -[UP] flip: 0, stem: 3987, fault:3496. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2146 -[UP] flip: 8017, stem: 3007, fault:3496. flip_cnt: 7, stem_cnt: 1481, fault_cnt:2142 -[UP] flip: 6088, stem: 3667, fault:3496. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2140 -[UP] flip: 5847, stem: 3185, fault:3496. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2137 -[UP] flip: 2461, stem: 2466, fault:3515. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2143 -[UP] flip: 4616, stem: 3027, fault:3515. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2141 -[UP] flip: 7335, stem: 1985, fault:3534. flip_cnt: 4, stem_cnt: 1483, fault_cnt:2144 -[UP] flip: 10780, stem: 2605, fault:3591. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2161 -[UP] flip: 10787, stem: 2665, fault:3591. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2171 -[UP] flip: 2070, stem: 2483, fault:3591. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2162 -[UP] flip: 8040, stem: 2043, fault:3591. flip_cnt: 7, stem_cnt: 1485, fault_cnt:2170 -[UP] flip: 0, stem: 2083, fault:3610. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2176 -[UP] flip: 9190, stem: 2503, fault:3610. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2174 -[UP] flip: 0, stem: 1523, fault:3610. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2174 -[UP] flip: 4398, stem: 2003, fault:3629. flip_cnt: 4, stem_cnt: 1485, fault_cnt:2172 -[UP] flip: 2736, stem: 3524, fault:3610. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2171 -[UP] flip: 6985, stem: 2404, fault:3610. flip_cnt: 7, stem_cnt: 1484, fault_cnt:2167 -[UP] flip: 8899, stem: 2164, fault:3610. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2163 -[UP] flip: 1507, stem: 2845, fault:3610. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2160 -[UP] flip: 6952, stem: 2605, fault:3591. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2156 -[UP] flip: 0, stem: 2905, fault:3591. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2154 -[UP] flip: 1666, stem: 2003, fault:3591. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2163 -[UP] flip: 0, stem: 883, fault:3591. flip_cnt: 0, stem_cnt: 1485, fault_cnt:2171 -[UP] flip: 8832, stem: 943, fault:3572. flip_cnt: 5, stem_cnt: 1485, fault_cnt:2169 -[UP] flip: 1418, stem: 1624, fault:3553. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2166 -[UP] flip: 0, stem: 1304, fault:3553. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2166 -[UP] flip: 1510, stem: 1783, fault:3553. flip_cnt: 2, stem_cnt: 1485, fault_cnt:2169 -[UP] flip: 1511, stem: 1784, fault:3553. flip_cnt: 2, stem_cnt: 1484, fault_cnt:2166 -[UP] flip: 10443, stem: 2345, fault:3553. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2167 -[UP] flip: 0, stem: 3006, fault:3553. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2161 -[UP] flip: 5277, stem: 1984, fault:3553. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2164 -[UP] flip: 0, stem: 1764, fault:3553. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2166 -[UP] flip: 0, stem: 1884, fault:3553. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2166 -[UP] flip: 1420, stem: 0, fault:3572. flip_cnt: 2, stem_cnt: 1488, fault_cnt:2169 -FIND SOLUTION! -[SOL] flip: 0, stem: 0, fault:3610. flip_cnt: 0, stem_cnt: 1488, fault_cnt:2188 -coverage: 0.9185 pattern: 5 before: 589 now: 399 -checking valid circuit ... result: 1. -local search! -[UP] flip: 0, stem: 5650, fault:46. flip_cnt: 0, stem_cnt: 1218, fault_cnt:617 -[UP] flip: 8, stem: 5377, fault:122. flip_cnt: 7, stem_cnt: 1251, fault_cnt:954 -[UP] flip: 0, stem: 4596, fault:174. flip_cnt: 0, stem_cnt: 1292, fault_cnt:979 -[UP] flip: 2, stem: 4584, fault:323. flip_cnt: 2, stem_cnt: 1324, fault_cnt:1176 -[UP] flip: 0, stem: 4865, fault:409. flip_cnt: 0, stem_cnt: 1343, fault_cnt:1327 -[UP] flip: 31, stem: 5038, fault:599. flip_cnt: 5, stem_cnt: 1350, fault_cnt:1371 -[UP] flip: 15, stem: 4903, fault:731. flip_cnt: 5, stem_cnt: 1345, fault_cnt:1438 -[UP] flip: 0, stem: 4347, fault:769. flip_cnt: 0, stem_cnt: 1361, fault_cnt:1294 -[UP] flip: 12, stem: 5134, fault:854. flip_cnt: 5, stem_cnt: 1374, fault_cnt:1415 -[UP] flip: 0, stem: 5180, fault:1043. flip_cnt: 0, stem_cnt: 1368, fault_cnt:1518 -[UP] flip: 27, stem: 6135, fault:1063. flip_cnt: 4, stem_cnt: 1353, fault_cnt:1367 -[UP] flip: 22, stem: 6350, fault:813. flip_cnt: 5, stem_cnt: 1358, fault_cnt:1080 -[UP] flip: 25, stem: 5594, fault:956. flip_cnt: 2, stem_cnt: 1374, fault_cnt:1182 -[UP] flip: 0, stem: 5777, fault:1085. flip_cnt: 0, stem_cnt: 1371, fault_cnt:1216 -[UP] flip: 20, stem: 6055, fault:1776. flip_cnt: 2, stem_cnt: 1373, fault_cnt:1564 -[UP] flip: 36, stem: 8195, fault:1777. flip_cnt: 7, stem_cnt: 1373, fault_cnt:1560 -[UP] flip: 0, stem: 6367, fault:1757. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1402 -[UP] flip: 44, stem: 6981, fault:1809. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1475 -[UP] flip: 30, stem: 7215, fault:2016. flip_cnt: 5, stem_cnt: 1373, fault_cnt:1523 -[UP] flip: 75, stem: 7059, fault:1903. flip_cnt: 5, stem_cnt: 1369, fault_cnt:1433 -[UP] flip: 57, stem: 7662, fault:1723. flip_cnt: 5, stem_cnt: 1366, fault_cnt:1317 -[UP] flip: 0, stem: 7798, fault:1525. flip_cnt: 0, stem_cnt: 1350, fault_cnt:1217 -[UP] flip: 80, stem: 7028, fault:1798. flip_cnt: 6, stem_cnt: 1360, fault_cnt:1473 -[UP] flip: 66, stem: 6654, fault:1739. flip_cnt: 4, stem_cnt: 1374, fault_cnt:1323 -[UP] flip: 80, stem: 7431, fault:1732. flip_cnt: 5, stem_cnt: 1377, fault_cnt:1225 -[UP] flip: 81, stem: 7075, fault:1659. flip_cnt: 5, stem_cnt: 1373, fault_cnt:1218 -[UP] flip: 55, stem: 7429, fault:1805. flip_cnt: 4, stem_cnt: 1379, fault_cnt:1416 -[UP] flip: 35, stem: 8241, fault:1940. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1426 -[UP] flip: 106, stem: 8862, fault:1954. flip_cnt: 7, stem_cnt: 1386, fault_cnt:1431 -[UP] flip: 89, stem: 10243, fault:1936. flip_cnt: 6, stem_cnt: 1385, fault_cnt:1424 -[UP] flip: 73, stem: 10004, fault:1737. flip_cnt: 5, stem_cnt: 1364, fault_cnt:1358 -[UP] flip: 0, stem: 8600, fault:1818. flip_cnt: 0, stem_cnt: 1368, fault_cnt:1343 -[UP] flip: 58, stem: 8908, fault:1676. flip_cnt: 2, stem_cnt: 1360, fault_cnt:1238 -[UP] flip: 104, stem: 8711, fault:1624. flip_cnt: 5, stem_cnt: 1377, fault_cnt:1215 -[UP] flip: 15, stem: 7286, fault:1714. flip_cnt: 2, stem_cnt: 1382, fault_cnt:1222 -[UP] flip: 49, stem: 7439, fault:1657. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1217 -[UP] flip: 50, stem: 8313, fault:1619. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1244 -[UP] flip: 0, stem: 7200, fault:1280. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1145 -[UP] flip: 75, stem: 7697, fault:1277. flip_cnt: 4, stem_cnt: 1391, fault_cnt:1205 -[UP] flip: 13, stem: 7509, fault:1315. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1238 -[UP] flip: 48, stem: 9190, fault:1315. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1237 -[UP] flip: 146, stem: 10553, fault:1315. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1232 -[UP] flip: 28, stem: 9713, fault:1505. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1419 -[UP] flip: 138, stem: 9673, fault:1543. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1473 -[UP] flip: 51, stem: 10113, fault:1524. flip_cnt: 3, stem_cnt: 1395, fault_cnt:1494 -[UP] flip: 0, stem: 10192, fault:1543. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1540 -[UP] flip: 0, stem: 10186, fault:1486. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1493 -[UP] flip: 0, stem: 11707, fault:1486. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1493 -[UP] flip: 0, stem: 12611, fault:1467. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1498 -[UP] flip: 88, stem: 12115, fault:1416. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1464 -[UP] flip: 85, stem: 13375, fault:1416. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1463 -[UP] flip: 201, stem: 14270, fault:1549. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1564 -[UP] flip: 190, stem: 13412, fault:1530. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1546 -[UP] flip: 89, stem: 14932, fault:1530. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1538 -[UP] flip: 76, stem: 18072, fault:1530. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1543 -[UP] flip: 166, stem: 16242, fault:1421. flip_cnt: 6, stem_cnt: 1366, fault_cnt:1461 -[UP] flip: 0, stem: 14314, fault:1573. flip_cnt: 0, stem_cnt: 1374, fault_cnt:1472 -[UP] flip: 0, stem: 14072, fault:1383. flip_cnt: 0, stem_cnt: 1376, fault_cnt:1293 -[UP] flip: 251, stem: 14135, fault:1326. flip_cnt: 7, stem_cnt: 1373, fault_cnt:1235 -[UP] flip: 0, stem: 13928, fault:1326. flip_cnt: 0, stem_cnt: 1380, fault_cnt:1132 -[UP] flip: 166, stem: 13909, fault:1231. flip_cnt: 4, stem_cnt: 1379, fault_cnt:1031 -[UP] flip: 0, stem: 14949, fault:1326. flip_cnt: 0, stem_cnt: 1379, fault_cnt:1161 -[UP] flip: 152, stem: 14371, fault:1212. flip_cnt: 3, stem_cnt: 1377, fault_cnt:1086 -[UP] flip: 109, stem: 15779, fault:1174. flip_cnt: 2, stem_cnt: 1369, fault_cnt:1136 -[UP] flip: 0, stem: 15149, fault:1041. flip_cnt: 0, stem_cnt: 1379, fault_cnt:1101 -[UP] flip: 117, stem: 15137, fault:984. flip_cnt: 3, stem_cnt: 1371, fault_cnt:1075 -[UP] flip: 96, stem: 14830, fault:950. flip_cnt: 4, stem_cnt: 1378, fault_cnt:1100 -[UP] flip: 214, stem: 16930, fault:950. flip_cnt: 5, stem_cnt: 1378, fault_cnt:1096 -[UP] flip: 0, stem: 17849, fault:931. flip_cnt: 0, stem_cnt: 1379, fault_cnt:1067 -[UP] flip: 194, stem: 16138, fault:1056. flip_cnt: 5, stem_cnt: 1370, fault_cnt:1134 -[UP] flip: 29, stem: 15255, fault:1170. flip_cnt: 2, stem_cnt: 1373, fault_cnt:1172 -[UP] flip: 0, stem: 16194, fault:1303. flip_cnt: 0, stem_cnt: 1374, fault_cnt:1203 -[UP] flip: 284, stem: 17955, fault:1265. flip_cnt: 7, stem_cnt: 1373, fault_cnt:1196 -[UP] flip: 0, stem: 15394, fault:1113. flip_cnt: 0, stem_cnt: 1374, fault_cnt:1149 -[UP] flip: 0, stem: 17236, fault:1094. flip_cnt: 0, stem_cnt: 1372, fault_cnt:1116 -[UP] flip: 246, stem: 13553, fault:1246. flip_cnt: 7, stem_cnt: 1375, fault_cnt:1229 -[UP] flip: 0, stem: 14111, fault:1360. flip_cnt: 0, stem_cnt: 1377, fault_cnt:1319 -[UP] flip: 204, stem: 16131, fault:1360. flip_cnt: 5, stem_cnt: 1377, fault_cnt:1317 -[UP] flip: 133, stem: 14005, fault:1550. flip_cnt: 2, stem_cnt: 1383, fault_cnt:1610 -[UP] flip: 167, stem: 10377, fault:1522. flip_cnt: 4, stem_cnt: 1391, fault_cnt:1598 -[UP] flip: 0, stem: 10977, fault:1503. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1593 -[UP] flip: 52, stem: 11350, fault:1372. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1466 -[UP] flip: 260, stem: 13050, fault:1372. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1464 -[UP] flip: 262, stem: 14190, fault:1372. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1460 -[UP] flip: 284, stem: 15210, fault:1315. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1431 -[UP] flip: 124, stem: 13101, fault:1334. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1433 -[UP] flip: 202, stem: 12602, fault:1429. flip_cnt: 4, stem_cnt: 1386, fault_cnt:1464 -[UP] flip: 0, stem: 12558, fault:1429. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1450 -[UP] flip: 0, stem: 13658, fault:1410. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1287 -[UP] flip: 353, stem: 14056, fault:1391. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1300 -[UP] flip: 325, stem: 18476, fault:1362. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1295 -[UP] flip: 129, stem: 13734, fault:1666. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1520 -[UP] flip: 192, stem: 14801, fault:1400. flip_cnt: 4, stem_cnt: 1387, fault_cnt:1444 -[UP] flip: 164, stem: 13744, fault:1362. flip_cnt: 4, stem_cnt: 1384, fault_cnt:1427 -[UP] flip: 208, stem: 12946, fault:1059. flip_cnt: 3, stem_cnt: 1382, fault_cnt:1269 -[UP] flip: 248, stem: 14846, fault:1040. flip_cnt: 7, stem_cnt: 1382, fault_cnt:1265 -[UP] flip: 0, stem: 13495, fault:1021. flip_cnt: 0, stem_cnt: 1373, fault_cnt:1254 -[UP] flip: 0, stem: 13772, fault:1002. flip_cnt: 0, stem_cnt: 1376, fault_cnt:1225 -[UP] flip: 239, stem: 13047, fault:969. flip_cnt: 5, stem_cnt: 1381, fault_cnt:1215 -[UP] flip: 0, stem: 15107, fault:950. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1186 -[UP] flip: 0, stem: 14469, fault:950. flip_cnt: 0, stem_cnt: 1379, fault_cnt:1157 -[UP] flip: 212, stem: 12903, fault:1006. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1180 -[UP] flip: 0, stem: 14561, fault:1006. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1184 -[UP] flip: 0, stem: 15621, fault:968. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1155 -[UP] flip: 0, stem: 15740, fault:930. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1165 -[UP] flip: 0, stem: 16640, fault:930. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1165 -[UP] flip: 430, stem: 14856, fault:968. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1145 -[UP] flip: 0, stem: 13638, fault:1082. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1206 -[UP] flip: 330, stem: 14559, fault:1120. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1214 -[UP] flip: 0, stem: 13591, fault:1101. flip_cnt: 0, stem_cnt: 1377, fault_cnt:1268 -[UP] flip: 293, stem: 15651, fault:1101. flip_cnt: 4, stem_cnt: 1377, fault_cnt:1264 -[UP] flip: 319, stem: 14791, fault:968. flip_cnt: 4, stem_cnt: 1377, fault_cnt:1107 -[UP] flip: 0, stem: 14913, fault:778. flip_cnt: 0, stem_cnt: 1375, fault_cnt:982 -[UP] flip: 0, stem: 15711, fault:740. flip_cnt: 0, stem_cnt: 1377, fault_cnt:977 -[UP] flip: 223, stem: 12895, fault:1101. flip_cnt: 5, stem_cnt: 1373, fault_cnt:1145 -[UP] flip: 203, stem: 14775, fault:1101. flip_cnt: 4, stem_cnt: 1373, fault_cnt:1143 -[UP] flip: 243, stem: 13972, fault:1101. flip_cnt: 3, stem_cnt: 1376, fault_cnt:1159 -[UP] flip: 203, stem: 15473, fault:1082. flip_cnt: 4, stem_cnt: 1375, fault_cnt:1115 -[UP] flip: 115, stem: 12174, fault:892. flip_cnt: 2, stem_cnt: 1374, fault_cnt:1015 -[UP] flip: 489, stem: 14074, fault:892. flip_cnt: 7, stem_cnt: 1374, fault_cnt:1011 -[UP] flip: 112, stem: 11257, fault:911. flip_cnt: 2, stem_cnt: 1371, fault_cnt:1105 -[UP] flip: 0, stem: 12937, fault:911. flip_cnt: 0, stem_cnt: 1371, fault_cnt:1105 -[UP] flip: 309, stem: 11401, fault:1006. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1141 -[UP] flip: 404, stem: 12541, fault:1120. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1158 -[UP] flip: 0, stem: 12605, fault:1063. flip_cnt: 0, stem_cnt: 1383, fault_cnt:1132 -[UP] flip: 107, stem: 12206, fault:1120. flip_cnt: 2, stem_cnt: 1382, fault_cnt:1154 -[UP] flip: 0, stem: 11947, fault:1120. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1162 -[UP] flip: 563, stem: 13807, fault:1139. flip_cnt: 7, stem_cnt: 1381, fault_cnt:1163 -[UP] flip: 176, stem: 12288, fault:1101. flip_cnt: 3, stem_cnt: 1380, fault_cnt:1049 -[UP] flip: 561, stem: 12893, fault:1139. flip_cnt: 7, stem_cnt: 1375, fault_cnt:1052 -[UP] flip: 616, stem: 12779, fault:1196. flip_cnt: 7, stem_cnt: 1369, fault_cnt:1035 -[UP] flip: 0, stem: 12649, fault:1291. flip_cnt: 0, stem_cnt: 1379, fault_cnt:1252 -[UP] flip: 569, stem: 14649, fault:1291. flip_cnt: 7, stem_cnt: 1379, fault_cnt:1248 -[UP] flip: 0, stem: 14186, fault:1044. flip_cnt: 0, stem_cnt: 1382, fault_cnt:1108 -[UP] flip: 287, stem: 11420, fault:930. flip_cnt: 3, stem_cnt: 1388, fault_cnt:971 -[UP] flip: 131, stem: 11998, fault:873. flip_cnt: 2, stem_cnt: 1390, fault_cnt:891 -[UP] flip: 161, stem: 12881, fault:1196. flip_cnt: 2, stem_cnt: 1387, fault_cnt:1219 -[UP] flip: 463, stem: 14681, fault:1196. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1217 -[UP] flip: 467, stem: 11616, fault:1424. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1464 -[UP] flip: 109, stem: 13396, fault:1424. flip_cnt: 3, stem_cnt: 1392, fault_cnt:1463 -[UP] flip: 0, stem: 14939, fault:1424. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1454 -[UP] flip: 320, stem: 16081, fault:1424. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1444 -[UP] flip: 0, stem: 15128, fault:1330. flip_cnt: 0, stem_cnt: 1380, fault_cnt:1385 -[UP] flip: 111, stem: 15847, fault:1197. flip_cnt: 2, stem_cnt: 1381, fault_cnt:1313 -[UP] flip: 248, stem: 14205, fault:1311. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1354 -[UP] flip: 342, stem: 13963, fault:1064. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1426 -[UP] flip: 0, stem: 15183, fault:1064. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1426 -[UP] flip: 674, stem: 14181, fault:1387. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1508 -[UP] flip: 536, stem: 13661, fault:1273. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1351 -[UP] flip: 0, stem: 13719, fault:1064. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1264 -[UP] flip: 0, stem: 15479, fault:1064. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1264 -[UP] flip: 320, stem: 13294, fault:1368. flip_cnt: 3, stem_cnt: 1394, fault_cnt:1458 -[UP] flip: 145, stem: 14573, fault:1368. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1468 -[UP] flip: 0, stem: 13535, fault:1254. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1409 -[UP] flip: 365, stem: 14695, fault:1254. flip_cnt: 4, stem_cnt: 1393, fault_cnt:1406 -[UP] flip: 328, stem: 12938, fault:1045. flip_cnt: 4, stem_cnt: 1390, fault_cnt:1269 -[UP] flip: 495, stem: 14678, fault:1140. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1326 -[UP] flip: 562, stem: 14273, fault:1083. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1292 -[UP] flip: 306, stem: 16753, fault:1064. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1270 -[UP] flip: 281, stem: 16715, fault:1064. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1275 -[UP] flip: 583, stem: 18315, fault:1064. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1273 -[UP] flip: 131, stem: 15510, fault:1197. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1429 -[UP] flip: 623, stem: 16531, fault:1235. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1402 -[UP] flip: 268, stem: 17951, fault:1235. flip_cnt: 3, stem_cnt: 1397, fault_cnt:1395 -[UP] flip: 0, stem: 17609, fault:1311. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1405 -[UP] flip: 213, stem: 18392, fault:1311. flip_cnt: 3, stem_cnt: 1396, fault_cnt:1392 -[UP] flip: 147, stem: 18171, fault:1368. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1410 -[UP] flip: 527, stem: 19430, fault:1368. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1416 -[UP] flip: 660, stem: 20309, fault:1368. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1460 -[UP] flip: 482, stem: 20146, fault:1368. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1470 -[UP] flip: 424, stem: 16964, fault:1596. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1619 -[UP] flip: 552, stem: 18244, fault:1577. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1610 -[UP] flip: 501, stem: 19024, fault:1577. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1607 -[UP] flip: 178, stem: 18984, fault:1539. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1639 -[UP] flip: 513, stem: 18703, fault:1482. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1586 -[UP] flip: 730, stem: 16141, fault:1577. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1603 -[UP] flip: 0, stem: 17501, fault:1520. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1575 -[UP] flip: 166, stem: 18827, fault:1501. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1573 -[UP] flip: 561, stem: 19147, fault:1463. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1540 -[UP] flip: 305, stem: 19289, fault:1330. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1469 -[UP] flip: 159, stem: 18987, fault:1330. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1413 -[UP] flip: 564, stem: 14646, fault:1330. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1470 -[UP] flip: 162, stem: 15968, fault:1330. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1464 -[UP] flip: 187, stem: 17528, fault:1330. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1463 -[UP] flip: 389, stem: 19009, fault:1330. flip_cnt: 4, stem_cnt: 1399, fault_cnt:1461 -[UP] flip: 714, stem: 18049, fault:1235. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1421 -[UP] flip: 319, stem: 18165, fault:1254. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1428 -[UP] flip: 0, stem: 19464, fault:1254. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1428 -[UP] flip: 827, stem: 20784, fault:1235. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1424 -[UP] flip: 403, stem: 22044, fault:1235. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1419 -[UP] flip: 139, stem: 21307, fault:1178. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1397 -[UP] flip: 546, stem: 22727, fault:1178. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1395 -[UP] flip: 450, stem: 19013, fault:1007. flip_cnt: 4, stem_cnt: 1395, fault_cnt:1207 -[UP] flip: 790, stem: 20373, fault:1007. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1204 -[UP] flip: 544, stem: 20973, fault:988. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1249 -[UP] flip: 452, stem: 15887, fault:969. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1255 -[UP] flip: 0, stem: 17507, fault:988. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1257 -[UP] flip: 0, stem: 18107, fault:988. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1254 -[UP] flip: 224, stem: 16951, fault:1159. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1374 -[UP] flip: 946, stem: 18152, fault:1159. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1373 -[UP] flip: 648, stem: 13273, fault:1159. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1236 -[UP] flip: 0, stem: 14953, fault:1159. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1236 -[UP] flip: 0, stem: 13868, fault:1425. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1535 -[UP] flip: 0, stem: 15528, fault:1425. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1535 -[UP] flip: 374, stem: 13505, fault:1444. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1527 -[UP] flip: 709, stem: 12245, fault:1387. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1542 -[UP] flip: 290, stem: 13566, fault:1387. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1538 -[UP] flip: 532, stem: 12405, fault:1501. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1578 -[UP] flip: 726, stem: 13785, fault:1463. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1572 -[UP] flip: 156, stem: 13758, fault:1520. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1617 -[UP] flip: 931, stem: 15018, fault:1520. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1613 -[UP] flip: 0, stem: 16218, fault:1520. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1613 -[UP] flip: 142, stem: 17238, fault:1501. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1610 -[UP] flip: 268, stem: 14397, fault:1501. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1529 -[UP] flip: 584, stem: 14875, fault:1501. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1524 -[UP] flip: 699, stem: 14317, fault:1368. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1423 -[UP] flip: 901, stem: 15597, fault:1368. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1428 -[UP] flip: 248, stem: 16857, fault:1368. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1427 -[UP] flip: 735, stem: 17717, fault:1368. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1425 -[UP] flip: 568, stem: 15957, fault:1387. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1478 -[UP] flip: 936, stem: 12798, fault:1444. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1595 -[UP] flip: 962, stem: 13958, fault:1444. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1589 -[UP] flip: 395, stem: 14539, fault:1463. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1570 -[UP] flip: 711, stem: 15979, fault:1463. flip_cnt: 5, stem_cnt: 1409, fault_cnt:1568 -[UP] flip: 287, stem: 16217, fault:1463. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1547 -[UP] flip: 316, stem: 15215, fault:1444. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1530 -[UP] flip: 643, stem: 16275, fault:1444. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1532 -[UP] flip: 675, stem: 14376, fault:1387. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1501 -[UP] flip: 240, stem: 12898, fault:1349. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1550 -[UP] flip: 0, stem: 14097, fault:1349. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1548 -[UP] flip: 464, stem: 12456, fault:1406. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1565 -[UP] flip: 205, stem: 13157, fault:1406. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1571 -[UP] flip: 376, stem: 14079, fault:1463. flip_cnt: 4, stem_cnt: 1409, fault_cnt:1605 -[UP] flip: 942, stem: 13473, fault:1634. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1693 -[UP] flip: 723, stem: 14693, fault:1634. flip_cnt: 7, stem_cnt: 1415, fault_cnt:1689 -[UP] flip: 194, stem: 13692, fault:1691. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1751 -[UP] flip: 274, stem: 14692, fault:1691. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1738 -[UP] flip: 592, stem: 15812, fault:1691. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1736 -[UP] flip: 743, stem: 16952, fault:1691. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1720 -[UP] flip: 187, stem: 16472, fault:1634. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1662 -[UP] flip: 247, stem: 15469, fault:1615. flip_cnt: 3, stem_cnt: 1419, fault_cnt:1621 -[UP] flip: 493, stem: 15496, fault:1501. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1556 -[UP] flip: 912, stem: 15977, fault:1501. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1545 -[UP] flip: 486, stem: 17057, fault:1520. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1547 -[UP] flip: 0, stem: 16056, fault:1406. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1462 -[UP] flip: 427, stem: 15454, fault:1349. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1448 -[UP] flip: 940, stem: 16037, fault:1330. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1425 -[UP] flip: 695, stem: 15857, fault:1349. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1427 -[UP] flip: 703, stem: 14854, fault:1349. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1453 -[UP] flip: 929, stem: 14435, fault:1349. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1456 -[UP] flip: 137, stem: 15354, fault:1235. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1283 -[UP] flip: 0, stem: 16213, fault:1235. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1286 -[UP] flip: 0, stem: 15678, fault:1216. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1217 -[UP] flip: 421, stem: 16818, fault:1216. flip_cnt: 3, stem_cnt: 1410, fault_cnt:1214 -[UP] flip: 0, stem: 17818, fault:1216. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1214 -[UP] flip: 1045, stem: 15775, fault:1349. flip_cnt: 7, stem_cnt: 1413, fault_cnt:1358 -[UP] flip: 806, stem: 17055, fault:1349. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1350 -[UP] flip: 1043, stem: 15694, fault:1254. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1311 -[UP] flip: 551, stem: 16454, fault:1254. flip_cnt: 4, stem_cnt: 1414, fault_cnt:1308 -[UP] flip: 236, stem: 17674, fault:1273. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1312 -[UP] flip: 0, stem: 18472, fault:1311. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1326 -[UP] flip: 0, stem: 18174, fault:1330. flip_cnt: 0, stem_cnt: 1414, fault_cnt:1318 -[UP] flip: 219, stem: 18052, fault:1368. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1353 -[UP] flip: 889, stem: 18614, fault:1387. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1433 -[UP] flip: 656, stem: 18254, fault:1463. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1545 -[UP] flip: 579, stem: 15274, fault:1425. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1551 -[UP] flip: 390, stem: 16574, fault:1425. flip_cnt: 3, stem_cnt: 1414, fault_cnt:1539 -[UP] flip: 0, stem: 14421, fault:1482. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1447 -[UP] flip: 839, stem: 16621, fault:1482. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1445 -[UP] flip: 0, stem: 17961, fault:1444. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1404 -[UP] flip: 764, stem: 19281, fault:1444. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1402 -[UP] flip: 0, stem: 19800, fault:1216. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1284 -[UP] flip: 462, stem: 21080, fault:1216. flip_cnt: 3, stem_cnt: 1408, fault_cnt:1282 -[UP] flip: 942, stem: 20502, fault:1235. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1303 -[UP] flip: 823, stem: 17883, fault:1121. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1289 -[UP] flip: 328, stem: 18983, fault:1121. flip_cnt: 3, stem_cnt: 1405, fault_cnt:1294 -[UP] flip: 1013, stem: 13733, fault:1140. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1239 -[UP] flip: 484, stem: 15433, fault:1140. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1228 -[UP] flip: 838, stem: 15015, fault:1140. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1212 -[UP] flip: 0, stem: 14176, fault:1140. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1181 -[UP] flip: 0, stem: 16016, fault:1140. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1181 -[UP] flip: 890, stem: 17616, fault:1140. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1177 -[UP] flip: 481, stem: 19356, fault:1083. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1143 -[UP] flip: 671, stem: 15275, fault:988. flip_cnt: 5, stem_cnt: 1393, fault_cnt:979 -[UP] flip: 0, stem: 16956, fault:988. flip_cnt: 0, stem_cnt: 1392, fault_cnt:961 -[UP] flip: 0, stem: 14864, fault:760. flip_cnt: 0, stem_cnt: 1384, fault_cnt:770 -[UP] flip: 415, stem: 14786, fault:741. flip_cnt: 2, stem_cnt: 1382, fault_cnt:871 -[UP] flip: 0, stem: 16526, fault:741. flip_cnt: 0, stem_cnt: 1382, fault_cnt:871 -[UP] flip: 333, stem: 15386, fault:741. flip_cnt: 2, stem_cnt: 1382, fault_cnt:934 -[UP] flip: 285, stem: 17126, fault:741. flip_cnt: 2, stem_cnt: 1382, fault_cnt:933 -[UP] flip: 0, stem: 15864, fault:646. flip_cnt: 0, stem_cnt: 1384, fault_cnt:883 -[UP] flip: 0, stem: 16587, fault:779. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1048 -[UP] flip: 219, stem: 18191, fault:760. flip_cnt: 2, stem_cnt: 1377, fault_cnt:1041 -[UP] flip: 0, stem: 15628, fault:741. flip_cnt: 0, stem_cnt: 1380, fault_cnt:1087 -[UP] flip: 0, stem: 17567, fault:741. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1087 -[UP] flip: 237, stem: 18568, fault:722. flip_cnt: 2, stem_cnt: 1380, fault_cnt:1073 -[UP] flip: 477, stem: 17801, fault:855. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1225 -[UP] flip: 0, stem: 19281, fault:703. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1058 -[UP] flip: 0, stem: 18587, fault:760. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1095 -[UP] flip: 1313, stem: 16965, fault:1064. flip_cnt: 7, stem_cnt: 1383, fault_cnt:1261 -[UP] flip: 497, stem: 17802, fault:950. flip_cnt: 3, stem_cnt: 1386, fault_cnt:1199 -[UP] flip: 346, stem: 17861, fault:931. flip_cnt: 3, stem_cnt: 1387, fault_cnt:1205 -[UP] flip: 0, stem: 19380, fault:931. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1200 -[UP] flip: 0, stem: 20578, fault:988. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1200 -[UP] flip: 0, stem: 22058, fault:988. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1200 -[UP] flip: 321, stem: 23577, fault:988. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1201 -[UP] flip: 801, stem: 21861, fault:1045. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1196 -[UP] flip: 849, stem: 21697, fault:1007. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1188 -[UP] flip: 379, stem: 20459, fault:1083. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1193 -[UP] flip: 668, stem: 21598, fault:1064. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1189 -[UP] flip: 0, stem: 22758, fault:1064. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1188 -[UP] flip: 0, stem: 24238, fault:1064. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1188 -[UP] flip: 809, stem: 25498, fault:1064. flip_cnt: 4, stem_cnt: 1390, fault_cnt:1184 -[UP] flip: 496, stem: 19493, fault:1330. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1518 -[UP] flip: 570, stem: 21333, fault:1330. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1507 -[UP] flip: 582, stem: 22833, fault:1330. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1508 -[UP] flip: 359, stem: 23832, fault:1330. flip_cnt: 3, stem_cnt: 1396, fault_cnt:1507 -[UP] flip: 1067, stem: 20411, fault:1083. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1290 -[UP] flip: 0, stem: 21811, fault:1083. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1290 -[UP] flip: 1316, stem: 22731, fault:1064. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1286 -[UP] flip: 726, stem: 22785, fault:1216. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1427 -[UP] flip: 291, stem: 20945, fault:1368. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1533 -[UP] flip: 1036, stem: 21085, fault:1235. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1405 -[UP] flip: 0, stem: 22245, fault:1235. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1406 -[UP] flip: 883, stem: 22167, fault:1216. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1376 -[UP] flip: 289, stem: 23548, fault:1216. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1365 -[UP] flip: 0, stem: 25088, fault:1216. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1365 -[UP] flip: 1197, stem: 26548, fault:1216. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1361 -[UP] flip: 1013, stem: 27488, fault:1216. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1358 -[UP] flip: 199, stem: 27407, fault:1216. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1354 -[UP] flip: 860, stem: 24153, fault:988. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1304 -[UP] flip: 0, stem: 25693, fault:988. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1304 -[UP] flip: 0, stem: 22399, fault:703. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1044 -[UP] flip: 0, stem: 24139, fault:703. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1044 -[UP] flip: 0, stem: 20017, fault:513. flip_cnt: 0, stem_cnt: 1391, fault_cnt:870 -[UP] flip: 0, stem: 21359, fault:513. flip_cnt: 0, stem_cnt: 1389, fault_cnt:866 -[UP] flip: 0, stem: 19760, fault:513. flip_cnt: 0, stem_cnt: 1388, fault_cnt:853 -[UP] flip: 1318, stem: 20501, fault:456. flip_cnt: 7, stem_cnt: 1387, fault_cnt:785 -[UP] flip: 1134, stem: 21380, fault:456. flip_cnt: 5, stem_cnt: 1388, fault_cnt:786 -[UP] flip: 0, stem: 21179, fault:703. flip_cnt: 0, stem_cnt: 1389, fault_cnt:897 -[UP] flip: 873, stem: 22099, fault:722. flip_cnt: 5, stem_cnt: 1389, fault_cnt:953 -[UP] flip: 290, stem: 21084, fault:1083. flip_cnt: 2, stem_cnt: 1384, fault_cnt:1207 -[UP] flip: 0, stem: 21582, fault:1083. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1219 -[UP] flip: 1344, stem: 22018, fault:1140. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1310 -[UP] flip: 1191, stem: 21939, fault:1216. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1375 -[UP] flip: 0, stem: 23239, fault:1216. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1375 -[UP] flip: 1032, stem: 24699, fault:1216. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1373 -[UP] flip: 580, stem: 24318, fault:1349. flip_cnt: 4, stem_cnt: 1390, fault_cnt:1378 -[UP] flip: 1241, stem: 25181, fault:1349. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1349 -[UP] flip: 923, stem: 24418, fault:988. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1190 -[UP] flip: 0, stem: 25839, fault:988. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1190 -[UP] flip: 242, stem: 25275, fault:1197. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1221 -[UP] flip: 1427, stem: 20491, fault:1197. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1161 -[UP] flip: 0, stem: 22172, fault:1197. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1161 -[UP] flip: 0, stem: 23792, fault:1197. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1161 -[UP] flip: 0, stem: 25293, fault:1197. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1161 -[UP] flip: 1443, stem: 25293, fault:1197. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1157 -[UP] flip: 958, stem: 23778, fault:1083. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1088 -[UP] flip: 0, stem: 23600, fault:1178. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1175 -[UP] flip: 1356, stem: 24681, fault:1235. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1200 -[UP] flip: 0, stem: 26079, fault:1026. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1060 -[UP] flip: 1112, stem: 30259, fault:1026. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1075 -[UP] flip: 1103, stem: 30062, fault:988. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1057 -[UP] flip: 0, stem: 28799, fault:969. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1058 -[UP] flip: 0, stem: 30280, fault:969. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1058 -[UP] flip: 0, stem: 26400, fault:912. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1013 -[UP] flip: 0, stem: 27398, fault:912. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1013 -[UP] flip: 1322, stem: 23815, fault:969. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1177 -[UP] flip: 0, stem: 24977, fault:969. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1170 -[UP] flip: 0, stem: 26877, fault:969. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1170 -[UP] flip: 1334, stem: 26997, fault:988. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1196 -[UP] flip: 1294, stem: 24899, fault:950. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1271 -[UP] flip: 406, stem: 22091, fault:1045. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1332 -[UP] flip: 1319, stem: 23831, fault:1045. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1330 -[UP] flip: 1356, stem: 23051, fault:1007. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1319 -[UP] flip: 680, stem: 24031, fault:1007. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1316 -[UP] flip: 561, stem: 22455, fault:1121. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1404 -[UP] flip: 787, stem: 23995, fault:1121. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1394 -[UP] flip: 680, stem: 23952, fault:1121. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1403 -[UP] flip: 0, stem: 22351, fault:1121. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1393 -[UP] flip: 237, stem: 23311, fault:1121. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1392 -[UP] flip: 0, stem: 22131, fault:1102. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1392 -[UP] flip: 0, stem: 19437, fault:1216. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1439 -[UP] flip: 0, stem: 21137, fault:1216. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1439 -[UP] flip: 1188, stem: 22757, fault:1216. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1440 -[UP] flip: 1175, stem: 23158, fault:1254. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1485 -[UP] flip: 0, stem: 19954, fault:1121. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1382 -[UP] flip: 1305, stem: 21434, fault:1121. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1383 -[UP] flip: 228, stem: 22514, fault:1159. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1450 -[UP] flip: 296, stem: 19477, fault:1026. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1340 -[UP] flip: 1333, stem: 18720, fault:1026. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1301 -[UP] flip: 0, stem: 20381, fault:1026. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1301 -[UP] flip: 1222, stem: 21762, fault:1026. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1298 -[UP] flip: 1200, stem: 22205, fault:1026. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1288 -[UP] flip: 512, stem: 23524, fault:1026. flip_cnt: 3, stem_cnt: 1384, fault_cnt:1285 -[UP] flip: 0, stem: 21899, fault:1045. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1295 -[UP] flip: 657, stem: 18539, fault:1140. flip_cnt: 4, stem_cnt: 1389, fault_cnt:1436 -[UP] flip: 715, stem: 20159, fault:1140. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1431 -[UP] flip: 976, stem: 21415, fault:1121. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1427 -[UP] flip: 0, stem: 22173, fault:1159. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1468 -[UP] flip: 498, stem: 18597, fault:1235. flip_cnt: 3, stem_cnt: 1391, fault_cnt:1558 -[UP] flip: 1060, stem: 19556, fault:1216. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1557 -[UP] flip: 389, stem: 21276, fault:1216. flip_cnt: 3, stem_cnt: 1392, fault_cnt:1564 -[UP] flip: 585, stem: 22315, fault:1216. flip_cnt: 4, stem_cnt: 1393, fault_cnt:1563 -[UP] flip: 318, stem: 20496, fault:1273. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1544 -[UP] flip: 1216, stem: 21896, fault:1273. flip_cnt: 4, stem_cnt: 1392, fault_cnt:1544 -[UP] flip: 0, stem: 22755, fault:1273. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1540 -[UP] flip: 189, stem: 23834, fault:1273. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1548 -[UP] flip: 261, stem: 22832, fault:1330. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1536 -[UP] flip: 1499, stem: 21594, fault:1292. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1519 -[UP] flip: 1257, stem: 23014, fault:1273. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1493 -[UP] flip: 580, stem: 24133, fault:1292. flip_cnt: 4, stem_cnt: 1395, fault_cnt:1495 -[UP] flip: 363, stem: 22366, fault:1406. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1543 -[UP] flip: 0, stem: 22826, fault:1406. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1525 -[UP] flip: 1172, stem: 23967, fault:1387. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1515 -[UP] flip: 418, stem: 24468, fault:1349. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1482 -[UP] flip: 0, stem: 25909, fault:1349. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1482 -[UP] flip: 404, stem: 26028, fault:1349. flip_cnt: 3, stem_cnt: 1400, fault_cnt:1480 -[UP] flip: 1654, stem: 26470, fault:1330. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1481 -[UP] flip: 225, stem: 27771, fault:1330. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1480 -[UP] flip: 751, stem: 29392, fault:1330. flip_cnt: 4, stem_cnt: 1396, fault_cnt:1478 -[UP] flip: 321, stem: 33373, fault:1330. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1474 -[UP] flip: 258, stem: 34312, fault:1311. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1471 -[UP] flip: 340, stem: 26311, fault:1444. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1519 -[UP] flip: 0, stem: 27910, fault:1444. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1519 -[UP] flip: 0, stem: 29150, fault:1444. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1516 -[UP] flip: 0, stem: 29553, fault:1501. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1542 -[UP] flip: 1967, stem: 30533, fault:1501. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1538 -[UP] flip: 1461, stem: 32055, fault:1425. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1469 -[UP] flip: 0, stem: 31751, fault:1463. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1477 -[UP] flip: 1253, stem: 32291, fault:1463. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1478 -[UP] flip: 1196, stem: 28810, fault:1349. flip_cnt: 4, stem_cnt: 1398, fault_cnt:1454 -[UP] flip: 669, stem: 30231, fault:1425. flip_cnt: 4, stem_cnt: 1397, fault_cnt:1475 -[UP] flip: 576, stem: 26788, fault:1178. flip_cnt: 3, stem_cnt: 1400, fault_cnt:1470 -[UP] flip: 0, stem: 27666, fault:1178. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1468 -[UP] flip: 1585, stem: 29086, fault:1178. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1464 -[UP] flip: 0, stem: 30506, fault:1178. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1460 -[UP] flip: 368, stem: 32147, fault:1178. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1457 -[UP] flip: 1182, stem: 29524, fault:1330. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1484 -[UP] flip: 473, stem: 30964, fault:1330. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1483 -[UP] flip: 1491, stem: 32344, fault:1330. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1481 -[UP] flip: 1019, stem: 32063, fault:1311. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1482 -[UP] flip: 959, stem: 31981, fault:1292. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1470 -[UP] flip: 1506, stem: 32540, fault:1387. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1512 -[UP] flip: 454, stem: 33881, fault:1387. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1511 -[UP] flip: 1852, stem: 28405, fault:1330. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1427 -[UP] flip: 1611, stem: 29766, fault:1330. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1423 -[UP] flip: 485, stem: 26044, fault:1501. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1492 -[UP] flip: 0, stem: 27784, fault:1501. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1495 -[UP] flip: 548, stem: 29124, fault:1501. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1494 -[UP] flip: 1167, stem: 30524, fault:1482. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1490 -[UP] flip: 1177, stem: 31764, fault:1311. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1416 -[UP] flip: 1524, stem: 32681, fault:1311. flip_cnt: 9, stem_cnt: 1407, fault_cnt:1428 -[UP] flip: 0, stem: 34121, fault:1330. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1445 -[UP] flip: 0, stem: 32641, fault:1330. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1445 -[UP] flip: 0, stem: 34101, fault:1330. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1445 -[UP] flip: 872, stem: 35301, fault:1330. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1442 -[UP] flip: 528, stem: 30238, fault:1444. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1475 -[UP] flip: 803, stem: 22846, fault:1691. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1576 -[UP] flip: 1431, stem: 24446, fault:1691. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1576 -[UP] flip: 0, stem: 25666, fault:1691. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1575 -[UP] flip: 0, stem: 27206, fault:1691. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1575 -[UP] flip: 359, stem: 28586, fault:1672. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1574 -[UP] flip: 684, stem: 30087, fault:1672. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1570 -[UP] flip: 845, stem: 27948, fault:1558. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1547 -[UP] flip: 1678, stem: 25067, fault:1577. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1572 -[UP] flip: 1241, stem: 25749, fault:1539. flip_cnt: 4, stem_cnt: 1399, fault_cnt:1524 -[UP] flip: 817, stem: 27269, fault:1539. flip_cnt: 4, stem_cnt: 1399, fault_cnt:1520 -[UP] flip: 1326, stem: 26929, fault:1577. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1520 -[UP] flip: 934, stem: 28149, fault:1558. flip_cnt: 4, stem_cnt: 1399, fault_cnt:1441 -[UP] flip: 0, stem: 22655, fault:1596. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1416 -[UP] flip: 306, stem: 23194, fault:1596. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1433 -[UP] flip: 519, stem: 20656, fault:1653. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1511 -[UP] flip: 871, stem: 21715, fault:1634. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1501 -[UP] flip: 0, stem: 20572, fault:1672. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1523 -[UP] flip: 254, stem: 22194, fault:1672. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1512 -[UP] flip: 1674, stem: 22372, fault:1672. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1507 -[UP] flip: 1017, stem: 20611, fault:1653. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1527 -[UP] flip: 0, stem: 21992, fault:1653. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1530 -[UP] flip: 312, stem: 23292, fault:1653. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1527 -[UP] flip: 800, stem: 24972, fault:1653. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1523 -[UP] flip: 1315, stem: 24773, fault:1577. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1471 -[UP] flip: 1280, stem: 26133, fault:1558. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1435 -[UP] flip: 0, stem: 20397, fault:1520. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1461 -[UP] flip: 649, stem: 21579, fault:1387. flip_cnt: 4, stem_cnt: 1389, fault_cnt:1423 -[UP] flip: 1043, stem: 23157, fault:1235. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1381 -[UP] flip: 1635, stem: 24957, fault:1235. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1386 -[UP] flip: 0, stem: 21840, fault:1425. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1416 -[UP] flip: 1480, stem: 21240, fault:1596. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1438 -[UP] flip: 1471, stem: 23260, fault:1596. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1436 -[UP] flip: 1637, stem: 24800, fault:1596. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1433 -[UP] flip: 435, stem: 25181, fault:1577. flip_cnt: 2, stem_cnt: 1387, fault_cnt:1397 -[UP] flip: 452, stem: 22602, fault:1615. flip_cnt: 4, stem_cnt: 1386, fault_cnt:1360 -[UP] flip: 0, stem: 24262, fault:1615. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1356 -[UP] flip: 0, stem: 22401, fault:1463. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1343 -[UP] flip: 946, stem: 21600, fault:1444. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1345 -[UP] flip: 346, stem: 20437, fault:1634. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1452 -[UP] flip: 0, stem: 22137, fault:1634. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1452 -[UP] flip: 2052, stem: 23537, fault:1596. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1421 -[UP] flip: 0, stem: 25137, fault:1596. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1421 -[UP] flip: 1018, stem: 26557, fault:1577. flip_cnt: 3, stem_cnt: 1391, fault_cnt:1415 -[UP] flip: 511, stem: 24955, fault:1596. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1408 -[UP] flip: 998, stem: 24637, fault:1501. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1398 -[UP] flip: 1058, stem: 24058, fault:1539. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1445 -[UP] flip: 977, stem: 25718, fault:1539. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1443 -[UP] flip: 0, stem: 25161, fault:1520. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1389 -[UP] flip: 396, stem: 21799, fault:1444. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1315 -[UP] flip: 463, stem: 20000, fault:1349. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1226 -[UP] flip: 0, stem: 21540, fault:1349. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1238 -[UP] flip: 1083, stem: 21619, fault:1387. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1266 -[UP] flip: 687, stem: 21520, fault:1406. flip_cnt: 3, stem_cnt: 1388, fault_cnt:1247 -[UP] flip: 0, stem: 23260, fault:1406. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1247 -[UP] flip: 0, stem: 19776, fault:1292. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1270 -[UP] flip: 0, stem: 21416, fault:1292. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1270 -[UP] flip: 1882, stem: 22420, fault:1254. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1244 -[UP] flip: 1639, stem: 23540, fault:1254. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1242 -[UP] flip: 386, stem: 21681, fault:1083. flip_cnt: 2, stem_cnt: 1387, fault_cnt:1102 -[UP] flip: 572, stem: 22544, fault:1083. flip_cnt: 3, stem_cnt: 1384, fault_cnt:1106 -[UP] flip: 306, stem: 23666, fault:1045. flip_cnt: 2, stem_cnt: 1382, fault_cnt:1098 -[UP] flip: 965, stem: 21885, fault:1026. flip_cnt: 3, stem_cnt: 1383, fault_cnt:1084 -[UP] flip: 1552, stem: 21947, fault:1501. flip_cnt: 5, stem_cnt: 1381, fault_cnt:1382 -[UP] flip: 0, stem: 21286, fault:1330. flip_cnt: 0, stem_cnt: 1382, fault_cnt:1253 -[UP] flip: 0, stem: 22246, fault:1349. flip_cnt: 0, stem_cnt: 1382, fault_cnt:1267 -[UP] flip: 365, stem: 23150, fault:1330. flip_cnt: 2, stem_cnt: 1378, fault_cnt:1260 -[UP] flip: 0, stem: 24389, fault:1330. flip_cnt: 0, stem_cnt: 1379, fault_cnt:1262 -[UP] flip: 2047, stem: 22354, fault:1216. flip_cnt: 7, stem_cnt: 1374, fault_cnt:1292 -[UP] flip: 0, stem: 24274, fault:1216. flip_cnt: 0, stem_cnt: 1374, fault_cnt:1292 -[UP] flip: 1825, stem: 23587, fault:836. flip_cnt: 5, stem_cnt: 1381, fault_cnt:1002 -[UP] flip: 0, stem: 25266, fault:931. flip_cnt: 0, stem_cnt: 1382, fault_cnt:1056 -[UP] flip: 0, stem: 27006, fault:931. flip_cnt: 0, stem_cnt: 1382, fault_cnt:1056 -[UP] flip: 1672, stem: 27526, fault:931. flip_cnt: 5, stem_cnt: 1382, fault_cnt:1053 -[UP] flip: 1553, stem: 27266, fault:931. flip_cnt: 7, stem_cnt: 1382, fault_cnt:1054 -[UP] flip: 0, stem: 28367, fault:931. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1061 -[UP] flip: 0, stem: 29387, fault:931. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1061 -[UP] flip: 0, stem: 23225, fault:1349. flip_cnt: 0, stem_cnt: 1383, fault_cnt:1265 -[UP] flip: 512, stem: 24345, fault:1349. flip_cnt: 2, stem_cnt: 1383, fault_cnt:1251 -[UP] flip: 0, stem: 26106, fault:1349. flip_cnt: 0, stem_cnt: 1382, fault_cnt:1251 -[UP] flip: 1329, stem: 27406, fault:1349. flip_cnt: 7, stem_cnt: 1382, fault_cnt:1247 -[UP] flip: 1420, stem: 26608, fault:1007. flip_cnt: 5, stem_cnt: 1380, fault_cnt:1092 -[UP] flip: 479, stem: 25927, fault:1292. flip_cnt: 2, stem_cnt: 1381, fault_cnt:1143 -[UP] flip: 1698, stem: 26967, fault:1292. flip_cnt: 5, stem_cnt: 1381, fault_cnt:1140 -[UP] flip: 0, stem: 20762, fault:1273. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1287 -[UP] flip: 1820, stem: 19740, fault:1254. flip_cnt: 6, stem_cnt: 1388, fault_cnt:1300 -[UP] flip: 1096, stem: 21441, fault:1254. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1299 -[UP] flip: 1293, stem: 22921, fault:1254. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1297 -[UP] flip: 377, stem: 23900, fault:1235. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1287 -[UP] flip: 513, stem: 21136, fault:1292. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1205 -[UP] flip: 2481, stem: 21514, fault:1273. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1215 -[UP] flip: 1047, stem: 22496, fault:1273. flip_cnt: 4, stem_cnt: 1392, fault_cnt:1231 -[UP] flip: 770, stem: 23896, fault:1273. flip_cnt: 3, stem_cnt: 1392, fault_cnt:1224 -[UP] flip: 1135, stem: 23160, fault:1292. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1192 -[UP] flip: 1504, stem: 23559, fault:1292. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1194 -[UP] flip: 1950, stem: 25439, fault:1292. flip_cnt: 7, stem_cnt: 1389, fault_cnt:1190 -[UP] flip: 0, stem: 26820, fault:1292. flip_cnt: 0, stem_cnt: 1388, fault_cnt:1190 -[UP] flip: 1645, stem: 28000, fault:1292. flip_cnt: 7, stem_cnt: 1388, fault_cnt:1186 -[UP] flip: 0, stem: 23754, fault:1349. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1386 -[UP] flip: 594, stem: 25215, fault:1349. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1383 -[UP] flip: 643, stem: 24656, fault:1292. flip_cnt: 3, stem_cnt: 1392, fault_cnt:1393 -[UP] flip: 1161, stem: 24876, fault:1292. flip_cnt: 3, stem_cnt: 1392, fault_cnt:1390 -[UP] flip: 1146, stem: 23074, fault:1501. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1448 -[UP] flip: 401, stem: 24694, fault:1425. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1418 -[UP] flip: 0, stem: 25257, fault:1311. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1303 -[UP] flip: 1613, stem: 24582, fault:1254. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1297 -[UP] flip: 0, stem: 25722, fault:1254. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1297 -[UP] flip: 1242, stem: 27219, fault:1254. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1300 -[UP] flip: 1301, stem: 27058, fault:1235. flip_cnt: 3, stem_cnt: 1390, fault_cnt:1273 -[UP] flip: 1739, stem: 27902, fault:1235. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1267 -[UP] flip: 0, stem: 22305, fault:1197. flip_cnt: 0, stem_cnt: 1383, fault_cnt:1175 -[UP] flip: 404, stem: 22840, fault:1235. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1151 -[UP] flip: 0, stem: 20603, fault:1178. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1140 -[UP] flip: 2029, stem: 21502, fault:1178. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1136 -[UP] flip: 2089, stem: 22682, fault:1178. flip_cnt: 7, stem_cnt: 1386, fault_cnt:1130 -[UP] flip: 430, stem: 23119, fault:1140. flip_cnt: 3, stem_cnt: 1389, fault_cnt:1123 -[UP] flip: 0, stem: 24699, fault:1140. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1124 -[UP] flip: 1685, stem: 22601, fault:1045. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1344 -[UP] flip: 1743, stem: 24441, fault:1045. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1342 -[UP] flip: 570, stem: 24077, fault:1102. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1396 -[UP] flip: 1007, stem: 25637, fault:1102. flip_cnt: 5, stem_cnt: 1391, fault_cnt:1413 -[UP] flip: 1206, stem: 26997, fault:1026. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1351 -[UP] flip: 772, stem: 28537, fault:1026. flip_cnt: 4, stem_cnt: 1391, fault_cnt:1341 -[UP] flip: 352, stem: 27278, fault:1197. flip_cnt: 2, stem_cnt: 1390, fault_cnt:1373 -[UP] flip: 0, stem: 28578, fault:1197. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1369 -[UP] flip: 1615, stem: 24675, fault:1235. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1423 -[UP] flip: 1129, stem: 26236, fault:1235. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1417 -[UP] flip: 2288, stem: 27235, fault:1235. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1371 -[UP] flip: 0, stem: 26578, fault:1159. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1349 -[UP] flip: 1178, stem: 29358, fault:1159. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1345 -[UP] flip: 0, stem: 30978, fault:1159. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1345 -[UP] flip: 1943, stem: 31836, fault:1159. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1361 -[UP] flip: 1868, stem: 30494, fault:1197. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1388 -[UP] flip: 431, stem: 26851, fault:1235. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1424 -[UP] flip: 2348, stem: 28191, fault:1235. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1420 -[UP] flip: 1022, stem: 25933, fault:1178. flip_cnt: 4, stem_cnt: 1395, fault_cnt:1407 -[UP] flip: 615, stem: 27612, fault:1178. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1403 -[UP] flip: 0, stem: 27374, fault:1159. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1352 -[UP] flip: 0, stem: 28774, fault:1159. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1352 -[UP] flip: 1333, stem: 30134, fault:1159. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1349 -[UP] flip: 0, stem: 24950, fault:798. flip_cnt: 0, stem_cnt: 1398, fault_cnt:950 -[UP] flip: 2073, stem: 25074, fault:760. flip_cnt: 5, stem_cnt: 1394, fault_cnt:914 -[UP] flip: 0, stem: 24412, fault:950. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1105 -[UP] flip: 1721, stem: 21495, fault:1083. flip_cnt: 4, stem_cnt: 1393, fault_cnt:1295 -[UP] flip: 1098, stem: 22694, fault:1045. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1309 -[UP] flip: 2111, stem: 24013, fault:1045. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1307 -[UP] flip: 508, stem: 24393, fault:988. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1206 -[UP] flip: 1075, stem: 25831, fault:988. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1209 -[UP] flip: 2500, stem: 26792, fault:874. flip_cnt: 7, stem_cnt: 1396, fault_cnt:1221 -[UP] flip: 0, stem: 28412, fault:874. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1220 -[UP] flip: 1069, stem: 24834, fault:931. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1388 -[UP] flip: 2052, stem: 25354, fault:931. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1389 -[UP] flip: 857, stem: 26754, fault:931. flip_cnt: 3, stem_cnt: 1394, fault_cnt:1399 -[UP] flip: 1180, stem: 28114, fault:931. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1397 -[UP] flip: 637, stem: 27436, fault:874. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1346 -[UP] flip: 2112, stem: 28478, fault:836. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1245 -[UP] flip: 2410, stem: 29998, fault:741. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1205 -[UP] flip: 2458, stem: 30618, fault:722. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1197 -[UP] flip: 1100, stem: 17960, fault:779. flip_cnt: 4, stem_cnt: 1388, fault_cnt:1251 -[UP] flip: 1028, stem: 19198, fault:779. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1246 -[UP] flip: 2119, stem: 17755, fault:855. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1340 -[UP] flip: 0, stem: 19356, fault:855. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1335 -[UP] flip: 498, stem: 15200, fault:855. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1332 -[UP] flip: 1155, stem: 16660, fault:893. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1332 -[UP] flip: 0, stem: 15982, fault:722. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1159 -[UP] flip: 0, stem: 17462, fault:722. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1159 -[UP] flip: 1912, stem: 17762, fault:722. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1159 -[UP] flip: 1115, stem: 17303, fault:703. flip_cnt: 7, stem_cnt: 1385, fault_cnt:1122 -[UP] flip: 0, stem: 18802, fault:703. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1119 -[UP] flip: 1243, stem: 18989, fault:836. flip_cnt: 4, stem_cnt: 1379, fault_cnt:1353 -[UP] flip: 1296, stem: 19190, fault:779. flip_cnt: 5, stem_cnt: 1378, fault_cnt:1334 -[UP] flip: 1261, stem: 20830, fault:779. flip_cnt: 5, stem_cnt: 1378, fault_cnt:1328 -[UP] flip: 1141, stem: 21513, fault:798. flip_cnt: 4, stem_cnt: 1375, fault_cnt:1315 -[UP] flip: 575, stem: 21094, fault:798. flip_cnt: 2, stem_cnt: 1374, fault_cnt:1310 -[UP] flip: 2535, stem: 22872, fault:798. flip_cnt: 7, stem_cnt: 1376, fault_cnt:1306 -[UP] flip: 542, stem: 20454, fault:589. flip_cnt: 2, stem_cnt: 1374, fault_cnt:936 -[UP] flip: 450, stem: 22255, fault:589. flip_cnt: 2, stem_cnt: 1373, fault_cnt:933 -[UP] flip: 2571, stem: 22509, fault:665. flip_cnt: 5, stem_cnt: 1379, fault_cnt:948 -[UP] flip: 2189, stem: 22125, fault:722. flip_cnt: 7, stem_cnt: 1383, fault_cnt:889 -[UP] flip: 438, stem: 18816, fault:741. flip_cnt: 2, stem_cnt: 1372, fault_cnt:951 -[UP] flip: 553, stem: 19091, fault:893. flip_cnt: 2, stem_cnt: 1377, fault_cnt:1176 -[UP] flip: 2088, stem: 15765, fault:817. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1060 -[UP] flip: 1038, stem: 16785, fault:817. flip_cnt: 3, stem_cnt: 1383, fault_cnt:1074 -[UP] flip: 0, stem: 18305, fault:817. flip_cnt: 0, stem_cnt: 1383, fault_cnt:1074 -[UP] flip: 407, stem: 15265, fault:893. flip_cnt: 2, stem_cnt: 1383, fault_cnt:1231 -[UP] flip: 1337, stem: 16905, fault:893. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1244 -[UP] flip: 1384, stem: 18546, fault:893. flip_cnt: 4, stem_cnt: 1382, fault_cnt:1242 -[UP] flip: 2804, stem: 13443, fault:684. flip_cnt: 7, stem_cnt: 1385, fault_cnt:942 -[UP] flip: 0, stem: 14324, fault:684. flip_cnt: 0, stem_cnt: 1384, fault_cnt:918 -[UP] flip: 0, stem: 15743, fault:684. flip_cnt: 0, stem_cnt: 1385, fault_cnt:914 -[UP] flip: 509, stem: 17040, fault:684. flip_cnt: 2, stem_cnt: 1388, fault_cnt:913 -[UP] flip: 0, stem: 12621, fault:836. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1146 -[UP] flip: 1387, stem: 13138, fault:760. flip_cnt: 4, stem_cnt: 1390, fault_cnt:1172 -[UP] flip: 2416, stem: 14557, fault:722. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1094 -[UP] flip: 2447, stem: 15977, fault:722. flip_cnt: 7, stem_cnt: 1391, fault_cnt:1072 -[UP] flip: 0, stem: 16743, fault:684. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1053 -[UP] flip: 0, stem: 17441, fault:684. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1062 -[UP] flip: 2348, stem: 18701, fault:684. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1059 -[UP] flip: 1924, stem: 17360, fault:703. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1087 -[UP] flip: 1150, stem: 18483, fault:703. flip_cnt: 4, stem_cnt: 1385, fault_cnt:1082 -[UP] flip: 1810, stem: 22504, fault:703. flip_cnt: 5, stem_cnt: 1384, fault_cnt:1060 -[UP] flip: 1280, stem: 16245, fault:1007. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1162 -[UP] flip: 409, stem: 14959, fault:1064. flip_cnt: 2, stem_cnt: 1389, fault_cnt:1228 -[UP] flip: 0, stem: 16639, fault:1064. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1244 -[UP] flip: 595, stem: 14552, fault:1083. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1229 -[UP] flip: 0, stem: 15971, fault:1102. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1239 -[UP] flip: 1214, stem: 14406, fault:1292. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1395 -[UP] flip: 2407, stem: 15708, fault:1292. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1384 -[UP] flip: 2601, stem: 15589, fault:1254. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1314 -[UP] flip: 0, stem: 16888, fault:1254. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1314 -[UP] flip: 662, stem: 18549, fault:1254. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1313 -[UP] flip: 520, stem: 22731, fault:1254. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1310 -[UP] flip: 0, stem: 23209, fault:1254. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1305 -[UP] flip: 0, stem: 19109, fault:1083. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1084 -[UP] flip: 2117, stem: 20209, fault:1083. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1085 -[UP] flip: 1568, stem: 22288, fault:1197. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1228 -[UP] flip: 1959, stem: 23348, fault:1197. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1230 -[UP] flip: 0, stem: 23588, fault:1235. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1253 -[UP] flip: 0, stem: 21212, fault:1216. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1250 -[UP] flip: 1411, stem: 21812, fault:1235. flip_cnt: 4, stem_cnt: 1396, fault_cnt:1257 -[UP] flip: 1886, stem: 19615, fault:1311. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1246 -[UP] flip: 0, stem: 21075, fault:1311. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1246 -[UP] flip: 2391, stem: 22515, fault:1311. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1242 -[UP] flip: 507, stem: 16271, fault:1216. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1230 -[UP] flip: 0, stem: 17791, fault:1216. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1230 -[UP] flip: 1189, stem: 17731, fault:1216. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1227 -[UP] flip: 0, stem: 17012, fault:1216. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1205 -[UP] flip: 0, stem: 17991, fault:1216. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1205 -[UP] flip: 2247, stem: 18013, fault:1197. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1172 -[UP] flip: 1593, stem: 19352, fault:1330. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1396 -[UP] flip: 1405, stem: 20210, fault:1330. flip_cnt: 4, stem_cnt: 1398, fault_cnt:1376 -[UP] flip: 0, stem: 19848, fault:1216. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1242 -[UP] flip: 2625, stem: 20688, fault:1197. flip_cnt: 6, stem_cnt: 1400, fault_cnt:1238 -[UP] flip: 0, stem: 20429, fault:1064. flip_cnt: 0, stem_cnt: 1399, fault_cnt:996 -[UP] flip: 0, stem: 21989, fault:1064. flip_cnt: 0, stem_cnt: 1399, fault_cnt:996 -[UP] flip: 3082, stem: 23169, fault:1064. flip_cnt: 7, stem_cnt: 1399, fault_cnt:992 -[UP] flip: 701, stem: 24308, fault:1064. flip_cnt: 2, stem_cnt: 1400, fault_cnt:993 -[UP] flip: 2782, stem: 22867, fault:1083. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1014 -[UP] flip: 2468, stem: 18768, fault:969. flip_cnt: 7, stem_cnt: 1400, fault_cnt:926 -[UP] flip: 2605, stem: 18164, fault:1083. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1100 -[UP] flip: 0, stem: 19565, fault:1083. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1100 -[UP] flip: 0, stem: 20786, fault:1083. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1100 -[UP] flip: 1982, stem: 22427, fault:1083. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1097 -[UP] flip: 793, stem: 23727, fault:1083. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1094 -[UP] flip: 0, stem: 25247, fault:1083. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1094 -[UP] flip: 822, stem: 23308, fault:1045. flip_cnt: 3, stem_cnt: 1400, fault_cnt:1059 -[UP] flip: 0, stem: 24448, fault:1045. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1059 -[UP] flip: 1191, stem: 22544, fault:1007. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1010 -[UP] flip: 0, stem: 24204, fault:950. flip_cnt: 0, stem_cnt: 1404, fault_cnt:993 -[UP] flip: 0, stem: 21604, fault:988. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1117 -[UP] flip: 737, stem: 21267, fault:1045. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1148 -[UP] flip: 1580, stem: 23463, fault:1159. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1298 -[UP] flip: 0, stem: 22788, fault:1159. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1299 -[UP] flip: 2119, stem: 23808, fault:1159. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1297 -[UP] flip: 442, stem: 24750, fault:1159. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1280 -[UP] flip: 1670, stem: 26430, fault:1159. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1277 -[UP] flip: 0, stem: 27091, fault:1159. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1261 -[UP] flip: 1216, stem: 26228, fault:1140. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1262 -[UP] flip: 0, stem: 26368, fault:1311. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1341 -[UP] flip: 1497, stem: 27548, fault:1292. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1342 -[UP] flip: 834, stem: 29028, fault:1292. flip_cnt: 3, stem_cnt: 1400, fault_cnt:1354 -[UP] flip: 2795, stem: 23471, fault:1178. flip_cnt: 6, stem_cnt: 1397, fault_cnt:1183 -[UP] flip: 2155, stem: 16933, fault:1121. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1004 -[UP] flip: 0, stem: 16910, fault:1102. flip_cnt: 0, stem_cnt: 1398, fault_cnt:969 -[UP] flip: 0, stem: 18390, fault:1102. flip_cnt: 0, stem_cnt: 1398, fault_cnt:969 -[UP] flip: 2768, stem: 20190, fault:1102. flip_cnt: 5, stem_cnt: 1398, fault_cnt:966 -[UP] flip: 0, stem: 18889, fault:969. flip_cnt: 0, stem_cnt: 1399, fault_cnt:920 -[UP] flip: 0, stem: 20310, fault:969. flip_cnt: 0, stem_cnt: 1398, fault_cnt:920 -[UP] flip: 602, stem: 19851, fault:950. flip_cnt: 2, stem_cnt: 1397, fault_cnt:907 -[UP] flip: 491, stem: 21291, fault:950. flip_cnt: 2, stem_cnt: 1397, fault_cnt:908 -[UP] flip: 1799, stem: 22571, fault:950. flip_cnt: 7, stem_cnt: 1397, fault_cnt:904 -[UP] flip: 0, stem: 23830, fault:950. flip_cnt: 0, stem_cnt: 1398, fault_cnt:904 -[UP] flip: 656, stem: 25251, fault:950. flip_cnt: 2, stem_cnt: 1397, fault_cnt:903 -[UP] flip: 0, stem: 26831, fault:950. flip_cnt: 0, stem_cnt: 1397, fault_cnt:903 -[UP] flip: 1950, stem: 16451, fault:1273. flip_cnt: 4, stem_cnt: 1397, fault_cnt:1225 -[UP] flip: 3250, stem: 18071, fault:1254. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1234 -[UP] flip: 1046, stem: 19531, fault:1254. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1232 -[UP] flip: 2076, stem: 20950, fault:1273. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1269 -[UP] flip: 0, stem: 20549, fault:1273. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1238 -[UP] flip: 0, stem: 22087, fault:1273. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1240 -[UP] flip: 2677, stem: 19385, fault:1311. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1171 -[UP] flip: 2574, stem: 20467, fault:1311. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1160 -[UP] flip: 757, stem: 21467, fault:1311. flip_cnt: 3, stem_cnt: 1401, fault_cnt:1156 -[UP] flip: 1680, stem: 22106, fault:1292. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1161 -[UP] flip: 0, stem: 22946, fault:1292. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1157 -[UP] flip: 0, stem: 23364, fault:1292. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1156 -[UP] flip: 721, stem: 22387, fault:1273. flip_cnt: 3, stem_cnt: 1401, fault_cnt:1217 -[UP] flip: 0, stem: 22528, fault:1254. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1213 -[UP] flip: 0, stem: 23045, fault:1254. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1213 -[UP] flip: 660, stem: 24626, fault:1254. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1212 -[UP] flip: 1243, stem: 25606, fault:1235. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1206 -[UP] flip: 0, stem: 25524, fault:1425. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1478 -[UP] flip: 3012, stem: 26286, fault:1425. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1477 -[UP] flip: 2107, stem: 26362, fault:1425. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1479 -[UP] flip: 671, stem: 27664, fault:1444. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1485 -[UP] flip: 1898, stem: 27067, fault:1292. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1410 -[UP] flip: 574, stem: 27988, fault:1197. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1137 -[UP] flip: 2503, stem: 23888, fault:1178. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1130 -[UP] flip: 1532, stem: 23871, fault:1197. flip_cnt: 4, stem_cnt: 1397, fault_cnt:1133 -[UP] flip: 2727, stem: 24332, fault:1159. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1118 -[UP] flip: 2575, stem: 18713, fault:1121. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1080 -[UP] flip: 0, stem: 20050, fault:1102. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1053 -[UP] flip: 1307, stem: 21670, fault:1102. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1049 -[UP] flip: 2971, stem: 22970, fault:1102. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1047 -[UP] flip: 1802, stem: 23930, fault:1102. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1043 -[UP] flip: 1986, stem: 25150, fault:1045. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1022 -[UP] flip: 0, stem: 25450, fault:1026. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1019 -[UP] flip: 0, stem: 26870, fault:1026. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1019 -[UP] flip: 2713, stem: 28091, fault:1026. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1015 -[UP] flip: 2411, stem: 28412, fault:1045. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1027 -[UP] flip: 2083, stem: 23149, fault:1102. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1228 -[UP] flip: 1602, stem: 24371, fault:912. flip_cnt: 4, stem_cnt: 1397, fault_cnt:1193 -[UP] flip: 2043, stem: 21849, fault:817. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1093 -[UP] flip: 1185, stem: 22150, fault:817. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1088 -[UP] flip: 0, stem: 20991, fault:760. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1180 -[UP] flip: 0, stem: 22356, fault:684. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1143 -[UP] flip: 0, stem: 17742, fault:760. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1190 -[UP] flip: 702, stem: 19523, fault:760. flip_cnt: 2, stem_cnt: 1385, fault_cnt:1187 -[UP] flip: 2614, stem: 21323, fault:760. flip_cnt: 7, stem_cnt: 1385, fault_cnt:1183 -[UP] flip: 1328, stem: 23143, fault:760. flip_cnt: 2, stem_cnt: 1385, fault_cnt:1182 -[UP] flip: 1335, stem: 23042, fault:760. flip_cnt: 2, stem_cnt: 1386, fault_cnt:1182 -[UP] flip: 1665, stem: 22098, fault:760. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1112 -[UP] flip: 2882, stem: 22923, fault:722. flip_cnt: 7, stem_cnt: 1385, fault_cnt:987 -[UP] flip: 1500, stem: 23162, fault:722. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1002 -[UP] flip: 1372, stem: 24520, fault:760. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1169 -[UP] flip: 2144, stem: 25938, fault:760. flip_cnt: 5, stem_cnt: 1390, fault_cnt:1171 -[UP] flip: 1005, stem: 27658, fault:836. flip_cnt: 3, stem_cnt: 1390, fault_cnt:1231 -[UP] flip: 1701, stem: 20943, fault:874. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1214 -[UP] flip: 2679, stem: 22924, fault:874. flip_cnt: 5, stem_cnt: 1384, fault_cnt:1206 -[UP] flip: 0, stem: 24564, fault:874. flip_cnt: 0, stem_cnt: 1384, fault_cnt:1206 -[UP] flip: 772, stem: 25904, fault:874. flip_cnt: 3, stem_cnt: 1384, fault_cnt:1205 -[UP] flip: 0, stem: 27724, fault:874. flip_cnt: 0, stem_cnt: 1384, fault_cnt:1205 -[UP] flip: 0, stem: 24588, fault:779. flip_cnt: 0, stem_cnt: 1380, fault_cnt:1131 -[UP] flip: 0, stem: 26387, fault:779. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1131 -[UP] flip: 1491, stem: 23627, fault:950. flip_cnt: 5, stem_cnt: 1381, fault_cnt:1357 -[UP] flip: 0, stem: 25687, fault:950. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1351 -[UP] flip: 0, stem: 27327, fault:950. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1359 -[UP] flip: 2923, stem: 29167, fault:950. flip_cnt: 6, stem_cnt: 1381, fault_cnt:1355 -[UP] flip: 728, stem: 29386, fault:912. flip_cnt: 3, stem_cnt: 1382, fault_cnt:1213 -[UP] flip: 0, stem: 30607, fault:912. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1210 -[UP] flip: 732, stem: 31709, fault:912. flip_cnt: 2, stem_cnt: 1379, fault_cnt:1204 -[UP] flip: 0, stem: 25724, fault:969. flip_cnt: 0, stem_cnt: 1384, fault_cnt:1259 -[UP] flip: 1626, stem: 24467, fault:950. flip_cnt: 5, stem_cnt: 1381, fault_cnt:1285 -[UP] flip: 0, stem: 22769, fault:684. flip_cnt: 0, stem_cnt: 1379, fault_cnt:924 -[UP] flip: 2530, stem: 24489, fault:684. flip_cnt: 5, stem_cnt: 1379, fault_cnt:920 -[UP] flip: 1351, stem: 25770, fault:684. flip_cnt: 5, stem_cnt: 1378, fault_cnt:912 -[UP] flip: 622, stem: 22186, fault:703. flip_cnt: 2, stem_cnt: 1382, fault_cnt:985 -[UP] flip: 0, stem: 24027, fault:703. flip_cnt: 0, stem_cnt: 1381, fault_cnt:985 -[UP] flip: 1409, stem: 23162, fault:741. flip_cnt: 2, stem_cnt: 1386, fault_cnt:971 -[UP] flip: 0, stem: 22416, fault:741. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1020 -[UP] flip: 2595, stem: 23454, fault:741. flip_cnt: 7, stem_cnt: 1394, fault_cnt:1014 -[UP] flip: 0, stem: 22212, fault:722. flip_cnt: 0, stem_cnt: 1396, fault_cnt:986 -[UP] flip: 2460, stem: 23633, fault:722. flip_cnt: 5, stem_cnt: 1395, fault_cnt:984 -[UP] flip: 1976, stem: 25113, fault:703. flip_cnt: 5, stem_cnt: 1395, fault_cnt:981 -[UP] flip: 0, stem: 25931, fault:703. flip_cnt: 0, stem_cnt: 1397, fault_cnt:981 -[UP] flip: 740, stem: 27270, fault:703. flip_cnt: 2, stem_cnt: 1398, fault_cnt:978 -[UP] flip: 2654, stem: 28690, fault:703. flip_cnt: 5, stem_cnt: 1398, fault_cnt:976 -[UP] flip: 0, stem: 22569, fault:627. flip_cnt: 0, stem_cnt: 1399, fault_cnt:784 -[UP] flip: 466, stem: 24089, fault:627. flip_cnt: 2, stem_cnt: 1399, fault_cnt:783 -[UP] flip: 0, stem: 25828, fault:627. flip_cnt: 0, stem_cnt: 1400, fault_cnt:783 -[UP] flip: 2458, stem: 23931, fault:988. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1237 -[UP] flip: 2073, stem: 23468, fault:1159. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1329 -[UP] flip: 0, stem: 24527, fault:1159. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1336 -[UP] flip: 2485, stem: 25026, fault:1159. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1303 -[UP] flip: 2618, stem: 25605, fault:1121. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1274 -[UP] flip: 0, stem: 22062, fault:1197. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1468 -[UP] flip: 1290, stem: 23362, fault:1197. flip_cnt: 3, stem_cnt: 1406, fault_cnt:1467 -[UP] flip: 783, stem: 24542, fault:1197. flip_cnt: 3, stem_cnt: 1406, fault_cnt:1466 -[UP] flip: 694, stem: 23580, fault:1102. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1411 -[UP] flip: 0, stem: 23900, fault:1102. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1411 -[UP] flip: 2777, stem: 24922, fault:931. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1339 -[UP] flip: 544, stem: 26123, fault:912. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1336 -[UP] flip: 2641, stem: 24261, fault:874. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1286 -[UP] flip: 3503, stem: 23819, fault:969. flip_cnt: 6, stem_cnt: 1409, fault_cnt:1291 -[UP] flip: 2393, stem: 24922, fault:969. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1275 -[UP] flip: 0, stem: 25863, fault:874. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1133 -[UP] flip: 0, stem: 27104, fault:874. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1133 -[UP] flip: 1746, stem: 23966, fault:760. flip_cnt: 5, stem_cnt: 1402, fault_cnt:879 -[UP] flip: 1755, stem: 25088, fault:760. flip_cnt: 5, stem_cnt: 1400, fault_cnt:870 -[UP] flip: 0, stem: 23041, fault:760. flip_cnt: 0, stem_cnt: 1407, fault_cnt:850 -[UP] flip: 0, stem: 23561, fault:760. flip_cnt: 0, stem_cnt: 1407, fault_cnt:850 -[UP] flip: 0, stem: 24360, fault:760. flip_cnt: 0, stem_cnt: 1408, fault_cnt:850 -[UP] flip: 1362, stem: 25799, fault:760. flip_cnt: 4, stem_cnt: 1409, fault_cnt:852 -[UP] flip: 1529, stem: 26639, fault:1102. flip_cnt: 4, stem_cnt: 1409, fault_cnt:1340 -[UP] flip: 678, stem: 26943, fault:1102. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1327 -[UP] flip: 1128, stem: 27982, fault:1102. flip_cnt: 4, stem_cnt: 1406, fault_cnt:1328 -[UP] flip: 0, stem: 26820, fault:1102. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1337 -[UP] flip: 0, stem: 26640, fault:1102. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1337 -[UP] flip: 2975, stem: 27402, fault:1102. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1319 -[UP] flip: 2291, stem: 28520, fault:1102. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1322 -[UP] flip: 502, stem: 26717, fault:1102. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1344 -[UP] flip: 2269, stem: 24896, fault:1121. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1364 -[UP] flip: 2850, stem: 24198, fault:1102. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1353 -[UP] flip: 2027, stem: 20065, fault:1349. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1575 -[UP] flip: 0, stem: 21565, fault:1349. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1586 -[UP] flip: 0, stem: 19845, fault:1387. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1580 -[UP] flip: 1641, stem: 19824, fault:1387. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1572 -[UP] flip: 0, stem: 20605, fault:1178. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1336 -[UP] flip: 3024, stem: 21205, fault:1178. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1366 -[UP] flip: 1577, stem: 22505, fault:1178. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1364 -[UP] flip: 0, stem: 21245, fault:1311. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1614 -[UP] flip: 894, stem: 23126, fault:1311. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1613 -[UP] flip: 2887, stem: 23544, fault:1216. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1565 -[UP] flip: 813, stem: 25385, fault:1216. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1563 -[UP] flip: 1554, stem: 26347, fault:1273. flip_cnt: 4, stem_cnt: 1401, fault_cnt:1582 -[UP] flip: 0, stem: 22085, fault:1235. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1405 -[UP] flip: 0, stem: 22944, fault:1235. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1405 -[UP] flip: 2380, stem: 22986, fault:1007. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1284 -[UP] flip: 1866, stem: 24306, fault:1007. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1282 -[UP] flip: 0, stem: 22449, fault:969. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1125 -[UP] flip: 2580, stem: 19770, fault:1178. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1352 -[UP] flip: 1714, stem: 20909, fault:1178. flip_cnt: 4, stem_cnt: 1399, fault_cnt:1355 -[UP] flip: 0, stem: 22449, fault:1178. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1362 -[UP] flip: 0, stem: 24029, fault:1178. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1362 -[UP] flip: 1553, stem: 20788, fault:1121. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1313 -[UP] flip: 716, stem: 21966, fault:1121. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1312 -[UP] flip: 0, stem: 23407, fault:1121. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1312 -[UP] flip: 698, stem: 24347, fault:1121. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1308 -[UP] flip: 1916, stem: 25565, fault:1121. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1310 -[UP] flip: 0, stem: 21223, fault:1254. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1447 -[UP] flip: 1201, stem: 21041, fault:1273. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1418 -[UP] flip: 3638, stem: 22383, fault:1254. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1414 -[UP] flip: 912, stem: 23221, fault:1254. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1415 -[UP] flip: 3072, stem: 24505, fault:1235. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1409 -[UP] flip: 2910, stem: 22564, fault:1216. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1366 -[UP] flip: 3002, stem: 23944, fault:1159. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1268 -[UP] flip: 0, stem: 24884, fault:1159. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1262 -[UP] flip: 0, stem: 23862, fault:1235. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1433 -[UP] flip: 0, stem: 24122, fault:1235. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1433 -[UP] flip: 2050, stem: 25240, fault:1235. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1436 -[UP] flip: 0, stem: 26460, fault:1235. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1444 -[UP] flip: 1802, stem: 27558, fault:1235. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1447 -[UP] flip: 0, stem: 26543, fault:1178. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1400 -[UP] flip: 2430, stem: 27423, fault:1178. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1396 -[UP] flip: 2662, stem: 28743, fault:1178. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1392 -[UP] flip: 3361, stem: 27615, fault:1387. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1523 -[UP] flip: 3048, stem: 28414, fault:1368. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1534 -[UP] flip: 2568, stem: 27414, fault:1425. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1473 -[UP] flip: 1015, stem: 28474, fault:1425. flip_cnt: 3, stem_cnt: 1414, fault_cnt:1472 -[UP] flip: 3161, stem: 25395, fault:1425. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1457 -[UP] flip: 842, stem: 25935, fault:1444. flip_cnt: 2, stem_cnt: 1413, fault_cnt:1454 -[UP] flip: 640, stem: 26476, fault:1463. flip_cnt: 2, stem_cnt: 1412, fault_cnt:1468 -[UP] flip: 1508, stem: 27675, fault:1463. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1471 -[UP] flip: 0, stem: 28536, fault:1463. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1469 -[UP] flip: 3003, stem: 28097, fault:1463. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1471 -[UP] flip: 0, stem: 28516, fault:1520. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1487 -[UP] flip: 1089, stem: 29956, fault:1520. flip_cnt: 3, stem_cnt: 1412, fault_cnt:1484 -[UP] flip: 1798, stem: 29555, fault:1520. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1396 -[UP] flip: 598, stem: 30401, fault:1501. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1384 -[UP] flip: 0, stem: 25586, fault:1368. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1179 -[UP] flip: 1942, stem: 23848, fault:1368. flip_cnt: 3, stem_cnt: 1400, fault_cnt:1178 -[UP] flip: 0, stem: 24210, fault:1368. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1169 -[UP] flip: 1011, stem: 25530, fault:1368. flip_cnt: 4, stem_cnt: 1398, fault_cnt:1167 -[UP] flip: 601, stem: 25206, fault:1349. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1131 -[UP] flip: 3511, stem: 21713, fault:1330. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1116 -[UP] flip: 3224, stem: 22953, fault:1311. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1108 -[UP] flip: 0, stem: 23393, fault:1311. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1115 -[UP] flip: 2432, stem: 20909, fault:1406. flip_cnt: 4, stem_cnt: 1399, fault_cnt:1258 -[UP] flip: 2194, stem: 22007, fault:1387. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1254 -[UP] flip: 3530, stem: 23171, fault:1349. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1233 -[UP] flip: 2050, stem: 24029, fault:1349. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1232 -[UP] flip: 0, stem: 24469, fault:1349. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1237 -[UP] flip: 796, stem: 25448, fault:1330. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1234 -[UP] flip: 3071, stem: 25768, fault:1311. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1232 -[UP] flip: 1572, stem: 26769, fault:1254. flip_cnt: 4, stem_cnt: 1399, fault_cnt:1227 -[UP] flip: 2186, stem: 26308, fault:1292. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1272 -[UP] flip: 0, stem: 25829, fault:1064. flip_cnt: 0, stem_cnt: 1399, fault_cnt:934 -[UP] flip: 3187, stem: 27188, fault:1064. flip_cnt: 5, stem_cnt: 1400, fault_cnt:931 -[UP] flip: 1431, stem: 27867, fault:1121. flip_cnt: 4, stem_cnt: 1401, fault_cnt:931 -[UP] flip: 2977, stem: 28506, fault:1121. flip_cnt: 7, stem_cnt: 1402, fault_cnt:932 -[UP] flip: 1643, stem: 29566, fault:1121. flip_cnt: 5, stem_cnt: 1402, fault_cnt:934 -[UP] flip: 0, stem: 19030, fault:1216. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1380 -[UP] flip: 1587, stem: 19770, fault:1197. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1370 -[UP] flip: 847, stem: 18526, fault:1102. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1170 -[UP] flip: 0, stem: 19604, fault:1102. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1170 -[UP] flip: 2440, stem: 20082, fault:1083. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1191 -[UP] flip: 0, stem: 20522, fault:1197. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1393 -[UP] flip: 1838, stem: 21403, fault:1197. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1392 -[UP] flip: 1433, stem: 22803, fault:1197. flip_cnt: 3, stem_cnt: 1405, fault_cnt:1391 -[UP] flip: 733, stem: 23782, fault:1197. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1413 -[UP] flip: 2539, stem: 24700, fault:1197. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1410 -[UP] flip: 1047, stem: 25140, fault:1197. flip_cnt: 3, stem_cnt: 1408, fault_cnt:1392 -[UP] flip: 0, stem: 24016, fault:1102. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1337 -[UP] flip: 0, stem: 24917, fault:1102. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1337 -[UP] flip: 1229, stem: 26078, fault:1102. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1335 -[UP] flip: 0, stem: 27098, fault:1102. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1332 -[UP] flip: 654, stem: 27898, fault:1102. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1332 -[UP] flip: 0, stem: 29319, fault:1102. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1332 -[UP] flip: 0, stem: 30439, fault:1102. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1332 -[UP] flip: 828, stem: 21337, fault:1064. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1123 -[UP] flip: 2258, stem: 22877, fault:1064. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1118 -[UP] flip: 0, stem: 24057, fault:1064. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1109 -[UP] flip: 1432, stem: 25257, fault:1064. flip_cnt: 3, stem_cnt: 1411, fault_cnt:1108 -[UP] flip: 1302, stem: 22101, fault:1083. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1084 -[UP] flip: 0, stem: 23602, fault:1083. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1084 -[UP] flip: 3119, stem: 23402, fault:1064. flip_cnt: 7, stem_cnt: 1406, fault_cnt:1076 -[UP] flip: 0, stem: 23104, fault:893. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1002 -[UP] flip: 954, stem: 23465, fault:893. flip_cnt: 2, stem_cnt: 1403, fault_cnt:999 -[UP] flip: 0, stem: 24507, fault:893. flip_cnt: 0, stem_cnt: 1401, fault_cnt:997 -[UP] flip: 0, stem: 25529, fault:893. flip_cnt: 0, stem_cnt: 1399, fault_cnt:995 -[UP] flip: 0, stem: 24132, fault:874. flip_cnt: 0, stem_cnt: 1396, fault_cnt:974 -[UP] flip: 0, stem: 25592, fault:874. flip_cnt: 0, stem_cnt: 1396, fault_cnt:974 -[UP] flip: 2753, stem: 23253, fault:1121. flip_cnt: 6, stem_cnt: 1395, fault_cnt:1203 -[UP] flip: 0, stem: 22609, fault:1064. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1170 -[UP] flip: 1896, stem: 23669, fault:1045. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1166 -[UP] flip: 0, stem: 21404, fault:1197. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1274 -[UP] flip: 0, stem: 22824, fault:1197. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1274 -[UP] flip: 884, stem: 22728, fault:1159. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1232 -[UP] flip: 3010, stem: 23330, fault:1121. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1285 -[UP] flip: 4295, stem: 24610, fault:1102. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1281 -[UP] flip: 3218, stem: 25750, fault:1064. flip_cnt: 7, stem_cnt: 1398, fault_cnt:1277 -[UP] flip: 2098, stem: 27350, fault:1083. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1270 -[UP] flip: 1562, stem: 24308, fault:1159. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1307 -[UP] flip: 3338, stem: 25447, fault:1159. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1264 -[UP] flip: 2080, stem: 24167, fault:1102. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1238 -[UP] flip: 3291, stem: 25607, fault:1064. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1256 -[UP] flip: 1625, stem: 23251, fault:1064. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1259 -[UP] flip: 754, stem: 24153, fault:1026. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1241 -[UP] flip: 1919, stem: 18388, fault:988. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1206 -[UP] flip: 1700, stem: 19868, fault:988. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1205 -[UP] flip: 3007, stem: 21108, fault:988. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1201 -[UP] flip: 2255, stem: 19672, fault:1235. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1264 -[UP] flip: 823, stem: 18228, fault:1235. flip_cnt: 3, stem_cnt: 1400, fault_cnt:1253 -[UP] flip: 3498, stem: 19568, fault:1235. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1216 -[UP] flip: 3437, stem: 20606, fault:1235. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1207 -[UP] flip: 1479, stem: 17917, fault:1444. flip_cnt: 3, stem_cnt: 1391, fault_cnt:1287 -[UP] flip: 0, stem: 19177, fault:1444. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1289 -[UP] flip: 0, stem: 19993, fault:1463. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1385 -[UP] flip: 0, stem: 21393, fault:1463. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1382 -[UP] flip: 0, stem: 22874, fault:1463. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1382 -[UP] flip: 762, stem: 24215, fault:1463. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1381 -[UP] flip: 0, stem: 17113, fault:1330. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1264 -[UP] flip: 0, stem: 18514, fault:1330. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1258 -[UP] flip: 0, stem: 18487, fault:1102. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1200 -[UP] flip: 2926, stem: 18986, fault:1121. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1197 -[UP] flip: 0, stem: 20288, fault:1121. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1197 -[UP] flip: 3683, stem: 21608, fault:1121. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1193 -[UP] flip: 4107, stem: 23008, fault:1121. flip_cnt: 7, stem_cnt: 1400, fault_cnt:1189 -[UP] flip: 0, stem: 13953, fault:1064. flip_cnt: 0, stem_cnt: 1395, fault_cnt:995 -[UP] flip: 0, stem: 15291, fault:1064. flip_cnt: 0, stem_cnt: 1397, fault_cnt:995 -[UP] flip: 0, stem: 16772, fault:1064. flip_cnt: 0, stem_cnt: 1396, fault_cnt:995 -[UP] flip: 0, stem: 16129, fault:1045. flip_cnt: 0, stem_cnt: 1399, fault_cnt:978 -[UP] flip: 0, stem: 17448, fault:1045. flip_cnt: 0, stem_cnt: 1400, fault_cnt:977 -[UP] flip: 3810, stem: 16884, fault:1007. flip_cnt: 5, stem_cnt: 1404, fault_cnt:991 -[UP] flip: 0, stem: 16863, fault:1007. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1004 -[UP] flip: 3096, stem: 16509, fault:1064. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1252 -[UP] flip: 0, stem: 14870, fault:1045. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1242 -[UP] flip: 1915, stem: 16288, fault:1045. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1239 -[UP] flip: 2642, stem: 15544, fault:1026. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1193 -[UP] flip: 0, stem: 17127, fault:1026. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1180 -[UP] flip: 1842, stem: 18627, fault:1026. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1181 -[UP] flip: 0, stem: 19031, fault:1026. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1171 -[UP] flip: 0, stem: 19894, fault:1026. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1170 -[UP] flip: 847, stem: 19392, fault:1045. flip_cnt: 3, stem_cnt: 1396, fault_cnt:1182 -[UP] flip: 1688, stem: 15965, fault:1330. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1435 -[UP] flip: 1588, stem: 16664, fault:1311. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1434 -[UP] flip: 963, stem: 17664, fault:1311. flip_cnt: 3, stem_cnt: 1404, fault_cnt:1433 -[UP] flip: 2123, stem: 18984, fault:1311. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1431 -[UP] flip: 1647, stem: 19647, fault:1330. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1384 -[UP] flip: 0, stem: 20847, fault:1330. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1368 -[UP] flip: 0, stem: 18968, fault:1330. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1345 -[UP] flip: 0, stem: 20467, fault:1330. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1345 -[UP] flip: 3400, stem: 18469, fault:1254. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1326 -[UP] flip: 541, stem: 19789, fault:1197. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1186 -[UP] flip: 2190, stem: 20647, fault:1292. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1252 -[UP] flip: 0, stem: 21087, fault:1292. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1259 -[UP] flip: 0, stem: 21386, fault:1330. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1261 -[UP] flip: 718, stem: 22627, fault:1330. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1260 -[UP] flip: 802, stem: 23827, fault:1330. flip_cnt: 3, stem_cnt: 1401, fault_cnt:1261 -[UP] flip: 1149, stem: 25107, fault:1330. flip_cnt: 3, stem_cnt: 1401, fault_cnt:1260 -[UP] flip: 1879, stem: 21353, fault:1254. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1303 -[UP] flip: 0, stem: 21553, fault:1235. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1299 -[UP] flip: 1153, stem: 22954, fault:1216. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1296 -[UP] flip: 0, stem: 18089, fault:1216. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1416 -[UP] flip: 2807, stem: 19170, fault:1178. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1385 -[UP] flip: 1739, stem: 20230, fault:1178. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1381 -[UP] flip: 3128, stem: 21649, fault:1178. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1314 -[UP] flip: 1949, stem: 18332, fault:1197. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1169 -[UP] flip: 1724, stem: 19752, fault:1197. flip_cnt: 4, stem_cnt: 1396, fault_cnt:1161 -[UP] flip: 2824, stem: 19222, fault:1178. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1128 -[UP] flip: 3392, stem: 20581, fault:1178. flip_cnt: 7, stem_cnt: 1387, fault_cnt:1124 -[UP] flip: 0, stem: 16241, fault:893. flip_cnt: 0, stem_cnt: 1387, fault_cnt:825 -[UP] flip: 1916, stem: 17821, fault:893. flip_cnt: 5, stem_cnt: 1387, fault_cnt:823 -[UP] flip: 1378, stem: 18659, fault:1216. flip_cnt: 3, stem_cnt: 1389, fault_cnt:1053 -[UP] flip: 0, stem: 20119, fault:1216. flip_cnt: 0, stem_cnt: 1389, fault_cnt:1053 -[UP] flip: 0, stem: 20782, fault:1216. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1053 -[UP] flip: 0, stem: 20702, fault:1235. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1051 -[UP] flip: 3603, stem: 22122, fault:1235. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1049 -[UP] flip: 1399, stem: 23143, fault:1235. flip_cnt: 3, stem_cnt: 1385, fault_cnt:1046 -[UP] flip: 0, stem: 22424, fault:1197. flip_cnt: 0, stem_cnt: 1384, fault_cnt:998 -[UP] flip: 2181, stem: 17632, fault:893. flip_cnt: 4, stem_cnt: 1376, fault_cnt:891 -[UP] flip: 1758, stem: 18932, fault:893. flip_cnt: 3, stem_cnt: 1376, fault_cnt:894 -[UP] flip: 889, stem: 18309, fault:893. flip_cnt: 2, stem_cnt: 1379, fault_cnt:945 -[UP] flip: 0, stem: 19949, fault:893. flip_cnt: 0, stem_cnt: 1379, fault_cnt:945 -[UP] flip: 567, stem: 20427, fault:874. flip_cnt: 2, stem_cnt: 1381, fault_cnt:954 -[UP] flip: 0, stem: 20844, fault:969. flip_cnt: 0, stem_cnt: 1384, fault_cnt:1056 -[UP] flip: 0, stem: 21623, fault:969. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1076 -[UP] flip: 0, stem: 23504, fault:969. flip_cnt: 0, stem_cnt: 1384, fault_cnt:1045 -[UP] flip: 0, stem: 21486, fault:760. flip_cnt: 0, stem_cnt: 1382, fault_cnt:779 -[UP] flip: 0, stem: 23186, fault:760. flip_cnt: 0, stem_cnt: 1382, fault_cnt:779 -[UP] flip: 0, stem: 22189, fault:741. flip_cnt: 0, stem_cnt: 1379, fault_cnt:769 -[UP] flip: 847, stem: 23347, fault:741. flip_cnt: 2, stem_cnt: 1381, fault_cnt:768 -[UP] flip: 0, stem: 22507, fault:608. flip_cnt: 0, stem_cnt: 1381, fault_cnt:648 -[UP] flip: 1548, stem: 18986, fault:760. flip_cnt: 3, stem_cnt: 1382, fault_cnt:811 -[UP] flip: 0, stem: 20485, fault:760. flip_cnt: 0, stem_cnt: 1383, fault_cnt:803 -[UP] flip: 1016, stem: 19901, fault:798. flip_cnt: 2, stem_cnt: 1387, fault_cnt:817 -[UP] flip: 469, stem: 20362, fault:817. flip_cnt: 2, stem_cnt: 1386, fault_cnt:816 -[UP] flip: 0, stem: 21601, fault:817. flip_cnt: 0, stem_cnt: 1387, fault_cnt:816 -[UP] flip: 0, stem: 22239, fault:817. flip_cnt: 0, stem_cnt: 1389, fault_cnt:840 -[UP] flip: 2688, stem: 23341, fault:855. flip_cnt: 5, stem_cnt: 1387, fault_cnt:814 -[UP] flip: 0, stem: 21768, fault:798. flip_cnt: 0, stem_cnt: 1380, fault_cnt:695 -[UP] flip: 0, stem: 20268, fault:741. flip_cnt: 0, stem_cnt: 1380, fault_cnt:654 -[UP] flip: 0, stem: 21585, fault:741. flip_cnt: 0, stem_cnt: 1383, fault_cnt:651 -[UP] flip: 976, stem: 22028, fault:741. flip_cnt: 2, stem_cnt: 1380, fault_cnt:671 -[UP] flip: 0, stem: 20744, fault:646. flip_cnt: 0, stem_cnt: 1384, fault_cnt:638 -[UP] flip: 2728, stem: 22062, fault:627. flip_cnt: 5, stem_cnt: 1386, fault_cnt:632 -[UP] flip: 0, stem: 21222, fault:608. flip_cnt: 0, stem_cnt: 1386, fault_cnt:608 -[UP] flip: 2148, stem: 19798, fault:665. flip_cnt: 4, stem_cnt: 1390, fault_cnt:710 -[UP] flip: 0, stem: 19192, fault:665. flip_cnt: 0, stem_cnt: 1396, fault_cnt:734 -[UP] flip: 0, stem: 17572, fault:570. flip_cnt: 0, stem_cnt: 1396, fault_cnt:748 -[UP] flip: 0, stem: 18872, fault:570. flip_cnt: 0, stem_cnt: 1396, fault_cnt:748 -[UP] flip: 0, stem: 20072, fault:551. flip_cnt: 0, stem_cnt: 1396, fault_cnt:751 -[UP] flip: 0, stem: 20869, fault:551. flip_cnt: 0, stem_cnt: 1399, fault_cnt:737 -[UP] flip: 0, stem: 21089, fault:551. flip_cnt: 0, stem_cnt: 1399, fault_cnt:737 -[UP] flip: 0, stem: 21192, fault:494. flip_cnt: 0, stem_cnt: 1396, fault_cnt:713 -[UP] flip: 4358, stem: 18795, fault:1311. flip_cnt: 7, stem_cnt: 1393, fault_cnt:1277 -[UP] flip: 4322, stem: 20018, fault:1273. flip_cnt: 7, stem_cnt: 1390, fault_cnt:1131 -[UP] flip: 0, stem: 21157, fault:1311. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1141 -[UP] flip: 2327, stem: 17536, fault:1254. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1147 -[UP] flip: 3808, stem: 18954, fault:1254. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1166 -[UP] flip: 0, stem: 20697, fault:1102. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1093 -[UP] flip: 926, stem: 20236, fault:1178. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1077 -[UP] flip: 0, stem: 19623, fault:1311. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1130 -[UP] flip: 2973, stem: 19683, fault:1064. flip_cnt: 5, stem_cnt: 1385, fault_cnt:1031 -[UP] flip: 2487, stem: 19176, fault:1064. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1001 -[UP] flip: 3155, stem: 17928, fault:1311. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1134 -[UP] flip: 0, stem: 19888, fault:1330. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1159 -[UP] flip: 0, stem: 20867, fault:1330. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1167 -[UP] flip: 0, stem: 21986, fault:1330. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1167 -[UP] flip: 2857, stem: 22040, fault:1368. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1181 -[UP] flip: 1427, stem: 23241, fault:1691. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1478 -[UP] flip: 1142, stem: 19229, fault:1615. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1497 -[UP] flip: 2023, stem: 20929, fault:1634. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1497 -[UP] flip: 0, stem: 22409, fault:1634. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1497 -[UP] flip: 1770, stem: 23808, fault:1634. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1499 -[UP] flip: 4902, stem: 25167, fault:1615. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1496 -[UP] flip: 1672, stem: 26427, fault:1615. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1493 -[UP] flip: 0, stem: 23447, fault:1615. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1480 -[UP] flip: 2689, stem: 24407, fault:1615. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1478 -[UP] flip: 0, stem: 22771, fault:1596. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1348 -[UP] flip: 0, stem: 19177, fault:1102. flip_cnt: 0, stem_cnt: 1391, fault_cnt:880 -[UP] flip: 2464, stem: 19292, fault:1121. flip_cnt: 5, stem_cnt: 1396, fault_cnt:884 -[UP] flip: 2260, stem: 20368, fault:1121. flip_cnt: 4, stem_cnt: 1400, fault_cnt:892 -[UP] flip: 0, stem: 21190, fault:1121. flip_cnt: 0, stem_cnt: 1398, fault_cnt:900 -[UP] flip: 784, stem: 22409, fault:1121. flip_cnt: 2, stem_cnt: 1399, fault_cnt:899 -[UP] flip: 2868, stem: 20765, fault:1235. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1091 -[UP] flip: 0, stem: 21525, fault:1026. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1024 -[UP] flip: 0, stem: 20511, fault:1007. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1056 -[UP] flip: 3421, stem: 20988, fault:931. flip_cnt: 7, stem_cnt: 1400, fault_cnt:927 -[UP] flip: 0, stem: 22368, fault:931. flip_cnt: 0, stem_cnt: 1400, fault_cnt:927 -[UP] flip: 815, stem: 23546, fault:931. flip_cnt: 2, stem_cnt: 1402, fault_cnt:928 -[UP] flip: 2223, stem: 21861, fault:1216. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1189 -[UP] flip: 2847, stem: 19565, fault:1197. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1179 -[UP] flip: 0, stem: 19911, fault:1197. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1171 -[UP] flip: 1170, stem: 21151, fault:1197. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1170 -[UP] flip: 0, stem: 19869, fault:1102. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1088 -[UP] flip: 1858, stem: 21270, fault:1102. flip_cnt: 4, stem_cnt: 1398, fault_cnt:1086 -[UP] flip: 1031, stem: 20730, fault:1102. flip_cnt: 3, stem_cnt: 1398, fault_cnt:1051 -[UP] flip: 1084, stem: 21788, fault:1102. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1050 -[UP] flip: 1819, stem: 22888, fault:1102. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1042 -[UP] flip: 2266, stem: 23349, fault:1083. flip_cnt: 4, stem_cnt: 1399, fault_cnt:944 -[UP] flip: 0, stem: 24749, fault:1083. flip_cnt: 0, stem_cnt: 1399, fault_cnt:936 -[UP] flip: 0, stem: 25870, fault:1083. flip_cnt: 0, stem_cnt: 1398, fault_cnt:936 -[UP] flip: 1663, stem: 22414, fault:1083. flip_cnt: 5, stem_cnt: 1394, fault_cnt:866 -[UP] flip: 1441, stem: 23990, fault:1102. flip_cnt: 5, stem_cnt: 1398, fault_cnt:876 -[UP] flip: 0, stem: 23850, fault:1102. flip_cnt: 0, stem_cnt: 1398, fault_cnt:870 -[UP] flip: 0, stem: 15806, fault:1482. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1308 -[UP] flip: 3501, stem: 17226, fault:1482. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1304 -[UP] flip: 0, stem: 18130, fault:1463. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1313 -[UP] flip: 0, stem: 17528, fault:1539. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1146 -[UP] flip: 1201, stem: 18828, fault:1539. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1140 -[UP] flip: 905, stem: 20228, fault:1539. flip_cnt: 2, stem_cnt: 1400, fault_cnt:1139 -[UP] flip: 2476, stem: 20728, fault:1539. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1147 -[UP] flip: 4548, stem: 21989, fault:1558. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1163 -[UP] flip: 0, stem: 20191, fault:1254. flip_cnt: 0, stem_cnt: 1397, fault_cnt:884 -[UP] flip: 2323, stem: 21651, fault:1254. flip_cnt: 5, stem_cnt: 1397, fault_cnt:880 -[UP] flip: 0, stem: 22771, fault:1235. flip_cnt: 0, stem_cnt: 1397, fault_cnt:877 -[UP] flip: 0, stem: 23950, fault:1235. flip_cnt: 0, stem_cnt: 1398, fault_cnt:877 -[UP] flip: 2559, stem: 24027, fault:1273. flip_cnt: 5, stem_cnt: 1401, fault_cnt:887 -[UP] flip: 872, stem: 21656, fault:1311. flip_cnt: 2, stem_cnt: 1392, fault_cnt:992 -[UP] flip: 1300, stem: 17818, fault:760. flip_cnt: 2, stem_cnt: 1390, fault_cnt:680 -[UP] flip: 3810, stem: 15774, fault:798. flip_cnt: 5, stem_cnt: 1394, fault_cnt:767 -[UP] flip: 0, stem: 16874, fault:1235. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1142 -[UP] flip: 881, stem: 18276, fault:1235. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1141 -[UP] flip: 927, stem: 19617, fault:1235. flip_cnt: 2, stem_cnt: 1391, fault_cnt:1138 -[UP] flip: 3920, stem: 16756, fault:1330. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1276 -[UP] flip: 0, stem: 17962, fault:1292. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1189 -[UP] flip: 2414, stem: 19422, fault:1292. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1187 -[UP] flip: 0, stem: 20703, fault:1292. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1182 -[UP] flip: 3838, stem: 21881, fault:1292. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1184 -[UP] flip: 3931, stem: 22120, fault:1311. flip_cnt: 5, stem_cnt: 1388, fault_cnt:1199 -[UP] flip: 0, stem: 22623, fault:1292. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1187 -[UP] flip: 1221, stem: 19195, fault:969. flip_cnt: 3, stem_cnt: 1373, fault_cnt:910 -[UP] flip: 4224, stem: 20995, fault:969. flip_cnt: 7, stem_cnt: 1373, fault_cnt:906 -[UP] flip: 0, stem: 19274, fault:893. flip_cnt: 0, stem_cnt: 1374, fault_cnt:901 -[UP] flip: 0, stem: 19409, fault:950. flip_cnt: 0, stem_cnt: 1379, fault_cnt:973 -[UP] flip: 0, stem: 20325, fault:836. flip_cnt: 0, stem_cnt: 1383, fault_cnt:914 -[UP] flip: 810, stem: 21185, fault:817. flip_cnt: 2, stem_cnt: 1383, fault_cnt:909 -[UP] flip: 2195, stem: 19776, fault:741. flip_cnt: 7, stem_cnt: 1392, fault_cnt:830 -[UP] flip: 0, stem: 20476, fault:646. flip_cnt: 0, stem_cnt: 1392, fault_cnt:779 -[UP] flip: 812, stem: 21597, fault:646. flip_cnt: 2, stem_cnt: 1391, fault_cnt:789 -[UP] flip: 0, stem: 20082, fault:608. flip_cnt: 0, stem_cnt: 1386, fault_cnt:741 -[UP] flip: 0, stem: 18965, fault:589. flip_cnt: 0, stem_cnt: 1383, fault_cnt:708 -[UP] flip: 0, stem: 20265, fault:646. flip_cnt: 0, stem_cnt: 1383, fault_cnt:745 -[UP] flip: 2997, stem: 20882, fault:665. flip_cnt: 5, stem_cnt: 1386, fault_cnt:744 -[UP] flip: 0, stem: 20867, fault:722. flip_cnt: 0, stem_cnt: 1381, fault_cnt:815 -[UP] flip: 820, stem: 21344, fault:817. flip_cnt: 2, stem_cnt: 1384, fault_cnt:872 -[UP] flip: 2037, stem: 19304, fault:836. flip_cnt: 5, stem_cnt: 1384, fault_cnt:874 -[UP] flip: 0, stem: 19824, fault:855. flip_cnt: 0, stem_cnt: 1384, fault_cnt:852 -[UP] flip: 0, stem: 21324, fault:855. flip_cnt: 0, stem_cnt: 1384, fault_cnt:852 -[UP] flip: 0, stem: 20585, fault:779. flip_cnt: 0, stem_cnt: 1383, fault_cnt:799 -[UP] flip: 0, stem: 20727, fault:1330. flip_cnt: 0, stem_cnt: 1381, fault_cnt:1248 -[UP] flip: 1911, stem: 20725, fault:1311. flip_cnt: 5, stem_cnt: 1383, fault_cnt:1241 -[UP] flip: 1499, stem: 19784, fault:893. flip_cnt: 3, stem_cnt: 1384, fault_cnt:839 -[UP] flip: 4047, stem: 20863, fault:893. flip_cnt: 5, stem_cnt: 1385, fault_cnt:837 -[UP] flip: 0, stem: 21202, fault:912. flip_cnt: 0, stem_cnt: 1386, fault_cnt:878 -[UP] flip: 2252, stem: 20383, fault:722. flip_cnt: 5, stem_cnt: 1385, fault_cnt:800 -[UP] flip: 3272, stem: 21562, fault:1140. flip_cnt: 5, stem_cnt: 1386, fault_cnt:1263 -[UP] flip: 1057, stem: 22882, fault:1140. flip_cnt: 3, stem_cnt: 1386, fault_cnt:1260 -[UP] flip: 0, stem: 21623, fault:950. flip_cnt: 0, stem_cnt: 1385, fault_cnt:1040 -[UP] flip: 985, stem: 19484, fault:950. flip_cnt: 2, stem_cnt: 1384, fault_cnt:1039 -[UP] flip: 2736, stem: 18701, fault:988. flip_cnt: 5, stem_cnt: 1387, fault_cnt:1021 -[UP] flip: 0, stem: 17642, fault:779. flip_cnt: 0, stem_cnt: 1386, fault_cnt:781 -[UP] flip: 0, stem: 18742, fault:855. flip_cnt: 0, stem_cnt: 1386, fault_cnt:790 -[UP] flip: 0, stem: 16414, fault:988. flip_cnt: 0, stem_cnt: 1394, fault_cnt:933 -[UP] flip: 2366, stem: 11228, fault:684. flip_cnt: 5, stem_cnt: 1400, fault_cnt:706 -[UP] flip: 0, stem: 12611, fault:741. flip_cnt: 0, stem_cnt: 1397, fault_cnt:762 -[UP] flip: 0, stem: 13534, fault:722. flip_cnt: 0, stem_cnt: 1394, fault_cnt:757 -[UP] flip: 4088, stem: 14155, fault:627. flip_cnt: 7, stem_cnt: 1393, fault_cnt:726 -[UP] flip: 3903, stem: 13395, fault:817. flip_cnt: 5, stem_cnt: 1393, fault_cnt:916 -[UP] flip: 2159, stem: 14615, fault:817. flip_cnt: 2, stem_cnt: 1393, fault_cnt:915 -[UP] flip: 0, stem: 15956, fault:817. flip_cnt: 0, stem_cnt: 1392, fault_cnt:915 -[UP] flip: 3010, stem: 13293, fault:1330. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1254 -[UP] flip: 2124, stem: 14713, fault:1330. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1258 -[UP] flip: 2043, stem: 15713, fault:1292. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1262 -[UP] flip: 2888, stem: 14753, fault:1216. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1245 -[UP] flip: 1397, stem: 14391, fault:1216. flip_cnt: 4, stem_cnt: 1397, fault_cnt:1265 -[UP] flip: 2534, stem: 15169, fault:1216. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1267 -[UP] flip: 5424, stem: 16369, fault:1216. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1265 -[UP] flip: 1473, stem: 17227, fault:1216. flip_cnt: 3, stem_cnt: 1401, fault_cnt:1266 -[UP] flip: 0, stem: 13197, fault:1368. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1247 -[UP] flip: 0, stem: 14777, fault:1368. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1247 -[UP] flip: 1558, stem: 15175, fault:1387. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1256 -[UP] flip: 1305, stem: 16514, fault:1387. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1260 -[UP] flip: 4090, stem: 14833, fault:1349. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1162 -[UP] flip: 2142, stem: 16233, fault:1349. flip_cnt: 2, stem_cnt: 1395, fault_cnt:1161 -[UP] flip: 3097, stem: 13831, fault:1330. flip_cnt: 4, stem_cnt: 1397, fault_cnt:1191 -[UP] flip: 2153, stem: 15271, fault:1330. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1198 -[UP] flip: 0, stem: 16811, fault:1330. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1198 -[UP] flip: 0, stem: 16911, fault:1330. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1198 -[UP] flip: 1893, stem: 17870, fault:1330. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1198 -[UP] flip: 0, stem: 14416, fault:1159. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1102 -[UP] flip: 873, stem: 15980, fault:1159. flip_cnt: 2, stem_cnt: 1388, fault_cnt:1070 -[UP] flip: 761, stem: 17381, fault:1102. flip_cnt: 2, stem_cnt: 1387, fault_cnt:1073 -[UP] flip: 0, stem: 18222, fault:912. flip_cnt: 0, stem_cnt: 1386, fault_cnt:909 -[UP] flip: 0, stem: 19742, fault:912. flip_cnt: 0, stem_cnt: 1386, fault_cnt:909 -[UP] flip: 0, stem: 15979, fault:988. flip_cnt: 0, stem_cnt: 1389, fault_cnt:928 -[UP] flip: 1081, stem: 17039, fault:988. flip_cnt: 3, stem_cnt: 1389, fault_cnt:924 -[UP] flip: 0, stem: 13958, fault:1197. flip_cnt: 0, stem_cnt: 1390, fault_cnt:1091 -[UP] flip: 0, stem: 15660, fault:893. flip_cnt: 0, stem_cnt: 1388, fault_cnt:903 -[UP] flip: 0, stem: 17138, fault:874. flip_cnt: 0, stem_cnt: 1390, fault_cnt:890 -[UP] flip: 1777, stem: 18319, fault:855. flip_cnt: 3, stem_cnt: 1389, fault_cnt:882 -[UP] flip: 0, stem: 19679, fault:855. flip_cnt: 0, stem_cnt: 1389, fault_cnt:880 -[UP] flip: 2043, stem: 20639, fault:855. flip_cnt: 5, stem_cnt: 1389, fault_cnt:869 -[UP] flip: 0, stem: 18765, fault:817. flip_cnt: 0, stem_cnt: 1383, fault_cnt:700 -[UP] flip: 4925, stem: 16922, fault:779. flip_cnt: 7, stem_cnt: 1386, fault_cnt:663 -[UP] flip: 0, stem: 17904, fault:817. flip_cnt: 0, stem_cnt: 1384, fault_cnt:752 -[UP] flip: 4348, stem: 17170, fault:893. flip_cnt: 5, stem_cnt: 1378, fault_cnt:816 -[UP] flip: 4246, stem: 18709, fault:874. flip_cnt: 7, stem_cnt: 1379, fault_cnt:812 -[UP] flip: 1435, stem: 18432, fault:912. flip_cnt: 3, stem_cnt: 1376, fault_cnt:866 -[UP] flip: 0, stem: 13765, fault:874. flip_cnt: 0, stem_cnt: 1383, fault_cnt:873 -[UP] flip: 0, stem: 15445, fault:874. flip_cnt: 0, stem_cnt: 1383, fault_cnt:873 -[UP] flip: 3826, stem: 16209, fault:855. flip_cnt: 7, stem_cnt: 1379, fault_cnt:813 -[UP] flip: 1117, stem: 16706, fault:855. flip_cnt: 3, stem_cnt: 1382, fault_cnt:808 -[UP] flip: 2560, stem: 15579, fault:741. flip_cnt: 4, stem_cnt: 1389, fault_cnt:848 -[UP] flip: 0, stem: 13585, fault:741. flip_cnt: 0, stem_cnt: 1383, fault_cnt:837 -[UP] flip: 1935, stem: 15045, fault:722. flip_cnt: 5, stem_cnt: 1383, fault_cnt:835 -[UP] flip: 1680, stem: 14489, fault:665. flip_cnt: 3, stem_cnt: 1379, fault_cnt:826 -[UP] flip: 3218, stem: 17589, fault:722. flip_cnt: 7, stem_cnt: 1379, fault_cnt:871 -[UP] flip: 0, stem: 15690, fault:513. flip_cnt: 0, stem_cnt: 1378, fault_cnt:591 -[UP] flip: 1010, stem: 17070, fault:513. flip_cnt: 2, stem_cnt: 1378, fault_cnt:590 -[UP] flip: 758, stem: 18229, fault:513. flip_cnt: 2, stem_cnt: 1379, fault_cnt:589 -[UP] flip: 0, stem: 18007, fault:513. flip_cnt: 0, stem_cnt: 1381, fault_cnt:583 -[UP] flip: 715, stem: 16119, fault:798. flip_cnt: 2, stem_cnt: 1389, fault_cnt:902 -[UP] flip: 4152, stem: 15137, fault:817. flip_cnt: 7, stem_cnt: 1391, fault_cnt:976 -[UP] flip: 0, stem: 16137, fault:836. flip_cnt: 0, stem_cnt: 1391, fault_cnt:984 -[UP] flip: 1043, stem: 12550, fault:912. flip_cnt: 3, stem_cnt: 1398, fault_cnt:997 -[UP] flip: 0, stem: 13611, fault:912. flip_cnt: 0, stem_cnt: 1397, fault_cnt:997 -[UP] flip: 923, stem: 15051, fault:912. flip_cnt: 2, stem_cnt: 1397, fault_cnt:996 -[UP] flip: 2917, stem: 13209, fault:1064. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1038 -[UP] flip: 0, stem: 14329, fault:1064. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1040 -[UP] flip: 875, stem: 15630, fault:1064. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1037 -[UP] flip: 3325, stem: 17110, fault:1064. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1034 -[UP] flip: 2013, stem: 18068, fault:1045. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1012 -[UP] flip: 1802, stem: 13259, fault:1083. flip_cnt: 3, stem_cnt: 1389, fault_cnt:1059 -[UP] flip: 893, stem: 13396, fault:1064. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1072 -[UP] flip: 4250, stem: 14473, fault:1159. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1116 -[UP] flip: 0, stem: 14352, fault:1140. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1119 -[UP] flip: 1173, stem: 14510, fault:1140. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1112 -[UP] flip: 692, stem: 15970, fault:1140. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1111 -[UP] flip: 0, stem: 17390, fault:1140. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1111 -[UP] flip: 2558, stem: 18331, fault:1140. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1107 -[UP] flip: 1429, stem: 18566, fault:1178. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1089 -[UP] flip: 791, stem: 19927, fault:1292. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1136 -[UP] flip: 1978, stem: 21227, fault:1292. flip_cnt: 5, stem_cnt: 1401, fault_cnt:1134 -[UP] flip: 774, stem: 21649, fault:1273. flip_cnt: 2, stem_cnt: 1399, fault_cnt:1110 -[UP] flip: 3972, stem: 14829, fault:1216. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1072 -[UP] flip: 3727, stem: 15469, fault:1216. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1073 -[UP] flip: 1669, stem: 16729, fault:1273. flip_cnt: 3, stem_cnt: 1399, fault_cnt:1088 -[UP] flip: 1929, stem: 17669, fault:1273. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1086 -[UP] flip: 0, stem: 14349, fault:893. flip_cnt: 0, stem_cnt: 1399, fault_cnt:846 -[UP] flip: 3897, stem: 15205, fault:893. flip_cnt: 5, stem_cnt: 1403, fault_cnt:849 -[UP] flip: 0, stem: 16505, fault:988. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1065 -[UP] flip: 5743, stem: 17047, fault:1026. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1065 -[UP] flip: 3752, stem: 18206, fault:1026. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1067 -[UP] flip: 926, stem: 14116, fault:760. flip_cnt: 2, stem_cnt: 1392, fault_cnt:885 -[UP] flip: 0, stem: 15916, fault:760. flip_cnt: 0, stem_cnt: 1392, fault_cnt:885 -[UP] flip: 0, stem: 16736, fault:760. flip_cnt: 0, stem_cnt: 1392, fault_cnt:885 -[UP] flip: 2550, stem: 15419, fault:760. flip_cnt: 5, stem_cnt: 1389, fault_cnt:860 -[UP] flip: 1287, stem: 17060, fault:779. flip_cnt: 2, stem_cnt: 1388, fault_cnt:861 -[UP] flip: 0, stem: 18001, fault:931. flip_cnt: 0, stem_cnt: 1387, fault_cnt:1088 -[UP] flip: 1000, stem: 19522, fault:931. flip_cnt: 2, stem_cnt: 1386, fault_cnt:1085 -[UP] flip: 4618, stem: 12641, fault:874. flip_cnt: 7, stem_cnt: 1387, fault_cnt:900 -[UP] flip: 1283, stem: 13979, fault:874. flip_cnt: 3, stem_cnt: 1389, fault_cnt:899 -[UP] flip: 2453, stem: 14759, fault:779. flip_cnt: 5, stem_cnt: 1389, fault_cnt:752 -[UP] flip: 3803, stem: 16459, fault:779. flip_cnt: 5, stem_cnt: 1389, fault_cnt:746 -[UP] flip: 4334, stem: 17318, fault:684. flip_cnt: 7, stem_cnt: 1390, fault_cnt:637 -[UP] flip: 0, stem: 18978, fault:684. flip_cnt: 0, stem_cnt: 1390, fault_cnt:635 -[UP] flip: 0, stem: 16277, fault:684. flip_cnt: 0, stem_cnt: 1391, fault_cnt:757 -[UP] flip: 785, stem: 14377, fault:665. flip_cnt: 2, stem_cnt: 1391, fault_cnt:695 -[UP] flip: 4547, stem: 15957, fault:665. flip_cnt: 5, stem_cnt: 1391, fault_cnt:693 -[UP] flip: 0, stem: 14599, fault:665. flip_cnt: 0, stem_cnt: 1389, fault_cnt:674 -[UP] flip: 0, stem: 14978, fault:665. flip_cnt: 0, stem_cnt: 1390, fault_cnt:678 -[UP] flip: 853, stem: 16235, fault:684. flip_cnt: 2, stem_cnt: 1393, fault_cnt:679 -[UP] flip: 1476, stem: 16351, fault:665. flip_cnt: 3, stem_cnt: 1397, fault_cnt:666 -[UP] flip: 0, stem: 19773, fault:703. flip_cnt: 0, stem_cnt: 1395, fault_cnt:707 -[UP] flip: 1131, stem: 17074, fault:627. flip_cnt: 2, stem_cnt: 1394, fault_cnt:924 -[UP] flip: 3844, stem: 18134, fault:627. flip_cnt: 5, stem_cnt: 1394, fault_cnt:921 -[UP] flip: 732, stem: 19375, fault:608. flip_cnt: 2, stem_cnt: 1393, fault_cnt:918 -[UP] flip: 0, stem: 20475, fault:608. flip_cnt: 0, stem_cnt: 1393, fault_cnt:918 -[UP] flip: 0, stem: 13953, fault:969. flip_cnt: 0, stem_cnt: 1395, fault_cnt:971 -[UP] flip: 1953, stem: 14898, fault:931. flip_cnt: 4, stem_cnt: 1390, fault_cnt:939 -[UP] flip: 0, stem: 16037, fault:931. flip_cnt: 0, stem_cnt: 1391, fault_cnt:942 -[UP] flip: 0, stem: 15330, fault:1007. flip_cnt: 0, stem_cnt: 1398, fault_cnt:988 -[UP] flip: 986, stem: 16611, fault:950. flip_cnt: 2, stem_cnt: 1397, fault_cnt:982 -[UP] flip: 3812, stem: 17591, fault:950. flip_cnt: 7, stem_cnt: 1397, fault_cnt:975 -[UP] flip: 1106, stem: 18851, fault:950. flip_cnt: 2, stem_cnt: 1397, fault_cnt:968 -[UP] flip: 0, stem: 17377, fault:912. flip_cnt: 0, stem_cnt: 1391, fault_cnt:990 -[UP] flip: 0, stem: 18776, fault:912. flip_cnt: 0, stem_cnt: 1392, fault_cnt:1003 -[UP] flip: 0, stem: 18393, fault:1007. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1069 -[UP] flip: 0, stem: 18150, fault:1026. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1119 -[UP] flip: 5615, stem: 17685, fault:1026. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1130 -[UP] flip: 4444, stem: 18387, fault:1007. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1091 -[UP] flip: 0, stem: 18290, fault:1026. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1119 -[UP] flip: 4158, stem: 19088, fault:1026. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1118 -[UP] flip: 3938, stem: 20268, fault:1026. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1116 -[UP] flip: 4207, stem: 21228, fault:1026. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1113 -[UP] flip: 0, stem: 16655, fault:969. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1068 -[UP] flip: 2662, stem: 17836, fault:969. flip_cnt: 7, stem_cnt: 1392, fault_cnt:1064 -[UP] flip: 0, stem: 19017, fault:969. flip_cnt: 0, stem_cnt: 1391, fault_cnt:1061 -[UP] flip: 872, stem: 16459, fault:741. flip_cnt: 2, stem_cnt: 1389, fault_cnt:846 -[UP] flip: 2891, stem: 17599, fault:741. flip_cnt: 5, stem_cnt: 1389, fault_cnt:848 -[UP] flip: 0, stem: 18718, fault:741. flip_cnt: 0, stem_cnt: 1390, fault_cnt:848 -[UP] flip: 2209, stem: 20239, fault:741. flip_cnt: 4, stem_cnt: 1389, fault_cnt:846 -[UP] flip: 0, stem: 19413, fault:703. flip_cnt: 0, stem_cnt: 1395, fault_cnt:859 -[UP] flip: 1786, stem: 20050, fault:703. flip_cnt: 4, stem_cnt: 1398, fault_cnt:866 -[UP] flip: 1379, stem: 18685, fault:798. flip_cnt: 3, stem_cnt: 1403, fault_cnt:1119 -[UP] flip: 5822, stem: 19925, fault:798. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1115 -[UP] flip: 1098, stem: 16024, fault:874. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1151 -[UP] flip: 4466, stem: 16145, fault:874. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1132 -[UP] flip: 1005, stem: 16144, fault:855. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1144 -[UP] flip: 4471, stem: 17303, fault:1007. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1332 -[UP] flip: 2879, stem: 17966, fault:969. flip_cnt: 3, stem_cnt: 1402, fault_cnt:1302 -[UP] flip: 2753, stem: 19346, fault:950. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1300 -[UP] flip: 1320, stem: 16569, fault:703. flip_cnt: 2, stem_cnt: 1399, fault_cnt:965 -[UP] flip: 4128, stem: 15671, fault:722. flip_cnt: 5, stem_cnt: 1397, fault_cnt:965 -[UP] flip: 3646, stem: 16090, fault:760. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1045 -[UP] flip: 1339, stem: 16390, fault:893. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1164 -[UP] flip: 3414, stem: 17569, fault:893. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1158 -[UP] flip: 2159, stem: 18249, fault:874. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1134 -[UP] flip: 1598, stem: 15332, fault:703. flip_cnt: 3, stem_cnt: 1396, fault_cnt:834 -[UP] flip: 914, stem: 15594, fault:722. flip_cnt: 2, stem_cnt: 1394, fault_cnt:906 -[UP] flip: 2051, stem: 13955, fault:817. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1043 -[UP] flip: 1466, stem: 15394, fault:646. flip_cnt: 2, stem_cnt: 1394, fault_cnt:810 -[UP] flip: 2897, stem: 16134, fault:646. flip_cnt: 5, stem_cnt: 1394, fault_cnt:802 -[UP] flip: 2301, stem: 15013, fault:570. flip_cnt: 5, stem_cnt: 1395, fault_cnt:741 -[UP] flip: 0, stem: 15393, fault:665. flip_cnt: 0, stem_cnt: 1395, fault_cnt:807 -[UP] flip: 0, stem: 16873, fault:665. flip_cnt: 0, stem_cnt: 1395, fault_cnt:807 -[UP] flip: 1110, stem: 17051, fault:817. flip_cnt: 2, stem_cnt: 1397, fault_cnt:990 -[UP] flip: 3536, stem: 18071, fault:855. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1019 -[UP] flip: 3379, stem: 18911, fault:855. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1016 -[UP] flip: 1170, stem: 20150, fault:855. flip_cnt: 2, stem_cnt: 1398, fault_cnt:1013 -[UP] flip: 1395, stem: 21451, fault:855. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1012 -[UP] flip: 1016, stem: 20492, fault:893. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1031 -[UP] flip: 4547, stem: 16645, fault:912. flip_cnt: 7, stem_cnt: 1383, fault_cnt:977 -[UP] flip: 3526, stem: 18185, fault:912. flip_cnt: 5, stem_cnt: 1383, fault_cnt:982 -[UP] flip: 1530, stem: 19385, fault:912. flip_cnt: 2, stem_cnt: 1383, fault_cnt:1035 -[UP] flip: 3215, stem: 21302, fault:969. flip_cnt: 7, stem_cnt: 1386, fault_cnt:1204 -[UP] flip: 0, stem: 22662, fault:931. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1147 -[UP] flip: 0, stem: 23742, fault:931. flip_cnt: 0, stem_cnt: 1386, fault_cnt:1145 -[UP] flip: 3110, stem: 23039, fault:950. flip_cnt: 5, stem_cnt: 1389, fault_cnt:1166 -[UP] flip: 2471, stem: 24418, fault:950. flip_cnt: 2, stem_cnt: 1390, fault_cnt:1164 -[UP] flip: 4143, stem: 21582, fault:665. flip_cnt: 5, stem_cnt: 1386, fault_cnt:887 -[UP] flip: 3997, stem: 22564, fault:627. flip_cnt: 7, stem_cnt: 1384, fault_cnt:884 -[UP] flip: 0, stem: 24043, fault:627. flip_cnt: 0, stem_cnt: 1385, fault_cnt:877 -[UP] flip: 0, stem: 24863, fault:627. flip_cnt: 0, stem_cnt: 1385, fault_cnt:877 -[UP] flip: 2280, stem: 18303, fault:665. flip_cnt: 4, stem_cnt: 1385, fault_cnt:759 -[UP] flip: 0, stem: 19363, fault:665. flip_cnt: 0, stem_cnt: 1385, fault_cnt:757 -[UP] flip: 2897, stem: 19583, fault:722. flip_cnt: 4, stem_cnt: 1385, fault_cnt:865 -[UP] flip: 2023, stem: 21003, fault:722. flip_cnt: 5, stem_cnt: 1385, fault_cnt:863 -[UP] flip: 1704, stem: 21745, fault:722. flip_cnt: 3, stem_cnt: 1383, fault_cnt:854 -[UP] flip: 3659, stem: 23185, fault:722. flip_cnt: 5, stem_cnt: 1383, fault_cnt:852 -[UP] flip: 1958, stem: 23983, fault:570. flip_cnt: 4, stem_cnt: 1385, fault_cnt:816 -[UP] flip: 2334, stem: 23180, fault:589. flip_cnt: 4, stem_cnt: 1388, fault_cnt:823 -[UP] flip: 2374, stem: 24580, fault:589. flip_cnt: 2, stem_cnt: 1388, fault_cnt:830 -[UP] flip: 0, stem: 25720, fault:589. flip_cnt: 0, stem_cnt: 1388, fault_cnt:830 -[UP] flip: 0, stem: 26821, fault:570. flip_cnt: 0, stem_cnt: 1387, fault_cnt:812 -[UP] flip: 976, stem: 18182, fault:646. flip_cnt: 2, stem_cnt: 1386, fault_cnt:935 -[UP] flip: 0, stem: 19463, fault:646. flip_cnt: 0, stem_cnt: 1385, fault_cnt:935 -[UP] flip: 0, stem: 20503, fault:646. flip_cnt: 0, stem_cnt: 1385, fault_cnt:935 -[UP] flip: 0, stem: 21923, fault:646. flip_cnt: 0, stem_cnt: 1385, fault_cnt:935 -[UP] flip: 4629, stem: 23203, fault:646. flip_cnt: 7, stem_cnt: 1385, fault_cnt:931 -[UP] flip: 2291, stem: 23419, fault:532. flip_cnt: 5, stem_cnt: 1389, fault_cnt:735 -[UP] flip: 3707, stem: 16731, fault:969. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1105 -[UP] flip: 2967, stem: 17271, fault:950. flip_cnt: 7, stem_cnt: 1397, fault_cnt:1104 -[UP] flip: 1535, stem: 18351, fault:988. flip_cnt: 4, stem_cnt: 1397, fault_cnt:1185 -[UP] flip: 0, stem: 19053, fault:912. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1116 -[UP] flip: 569, stem: 19354, fault:912. flip_cnt: 1, stem_cnt: 1394, fault_cnt:1079 -[UP] flip: 0, stem: 18614, fault:893. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1080 -[UP] flip: 2632, stem: 19772, fault:893. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1078 -[UP] flip: 1072, stem: 19287, fault:1140. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1311 -[UP] flip: 4731, stem: 20167, fault:1140. flip_cnt: 7, stem_cnt: 1401, fault_cnt:1307 -[UP] flip: 1166, stem: 19172, fault:874. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1192 -[UP] flip: 0, stem: 20793, fault:1064. flip_cnt: 0, stem_cnt: 1395, fault_cnt:1317 -[UP] flip: 1301, stem: 21932, fault:1064. flip_cnt: 3, stem_cnt: 1396, fault_cnt:1317 -[UP] flip: 2207, stem: 18692, fault:741. flip_cnt: 4, stem_cnt: 1396, fault_cnt:1014 -[UP] flip: 5666, stem: 20672, fault:608. flip_cnt: 7, stem_cnt: 1396, fault_cnt:993 -[UP] flip: 2447, stem: 21510, fault:608. flip_cnt: 5, stem_cnt: 1398, fault_cnt:996 -[UP] flip: 0, stem: 14344, fault:1121. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1287 -[UP] flip: 0, stem: 14782, fault:1140. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1293 -[UP] flip: 3344, stem: 14079, fault:1140. flip_cnt: 4, stem_cnt: 1409, fault_cnt:1296 -[UP] flip: 2388, stem: 15137, fault:1216. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1355 -[UP] flip: 0, stem: 16359, fault:1026. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1160 -[UP] flip: 3699, stem: 14460, fault:988. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1142 -[UP] flip: 0, stem: 15720, fault:988. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1142 -[UP] flip: 2339, stem: 16679, fault:988. flip_cnt: 4, stem_cnt: 1409, fault_cnt:1144 -[UP] flip: 3475, stem: 14949, fault:988. flip_cnt: 7, stem_cnt: 1399, fault_cnt:1112 -[UP] flip: 0, stem: 16310, fault:988. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1106 -[UP] flip: 0, stem: 17489, fault:988. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1106 -[UP] flip: 2835, stem: 12525, fault:1235. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1329 -[UP] flip: 0, stem: 12581, fault:1235. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1327 -[UP] flip: 4198, stem: 13861, fault:1235. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1323 -[UP] flip: 2527, stem: 15244, fault:1026. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1281 -[UP] flip: 2981, stem: 16063, fault:874. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1138 -[UP] flip: 0, stem: 16803, fault:760. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1058 -[UP] flip: 0, stem: 15920, fault:798. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1078 -[UP] flip: 6148, stem: 15280, fault:874. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1079 -[UP] flip: 2799, stem: 16019, fault:874. flip_cnt: 4, stem_cnt: 1409, fault_cnt:1101 -[UP] flip: 3552, stem: 13341, fault:570. flip_cnt: 4, stem_cnt: 1407, fault_cnt:659 -[UP] flip: 1355, stem: 13538, fault:570. flip_cnt: 2, stem_cnt: 1410, fault_cnt:683 -[UP] flip: 0, stem: 12357, fault:570. flip_cnt: 0, stem_cnt: 1411, fault_cnt:680 -[UP] flip: 0, stem: 12793, fault:570. flip_cnt: 0, stem_cnt: 1415, fault_cnt:680 -[UP] flip: 0, stem: 14093, fault:608. flip_cnt: 0, stem_cnt: 1415, fault_cnt:703 -[UP] flip: 1131, stem: 14694, fault:513. flip_cnt: 2, stem_cnt: 1414, fault_cnt:679 -[UP] flip: 3716, stem: 16054, fault:513. flip_cnt: 7, stem_cnt: 1414, fault_cnt:675 -[UP] flip: 0, stem: 17594, fault:513. flip_cnt: 0, stem_cnt: 1414, fault_cnt:673 -[UP] flip: 0, stem: 16198, fault:570. flip_cnt: 0, stem_cnt: 1410, fault_cnt:787 -[UP] flip: 1321, stem: 16939, fault:570. flip_cnt: 2, stem_cnt: 1409, fault_cnt:786 -[UP] flip: 1002, stem: 15655, fault:570. flip_cnt: 2, stem_cnt: 1413, fault_cnt:808 -[UP] flip: 4857, stem: 16397, fault:798. flip_cnt: 7, stem_cnt: 1411, fault_cnt:957 -[UP] flip: 0, stem: 13342, fault:836. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1059 -[UP] flip: 0, stem: 14000, fault:836. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1052 -[UP] flip: 1215, stem: 14980, fault:836. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1051 -[UP] flip: 0, stem: 16301, fault:836. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1051 -[UP] flip: 0, stem: 17721, fault:836. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1051 -[UP] flip: 4356, stem: 16283, fault:608. flip_cnt: 7, stem_cnt: 1405, fault_cnt:820 -[UP] flip: 0, stem: 16405, fault:608. flip_cnt: 0, stem_cnt: 1403, fault_cnt:825 -[UP] flip: 0, stem: 17565, fault:608. flip_cnt: 0, stem_cnt: 1403, fault_cnt:825 -[UP] flip: 0, stem: 17191, fault:570. flip_cnt: 0, stem_cnt: 1397, fault_cnt:768 -[UP] flip: 1358, stem: 16967, fault:608. flip_cnt: 2, stem_cnt: 1401, fault_cnt:806 -[UP] flip: 3887, stem: 15190, fault:608. flip_cnt: 4, stem_cnt: 1398, fault_cnt:771 -[UP] flip: 4765, stem: 17212, fault:608. flip_cnt: 7, stem_cnt: 1396, fault_cnt:758 -[UP] flip: 4464, stem: 18772, fault:608. flip_cnt: 5, stem_cnt: 1396, fault_cnt:754 -[UP] flip: 4847, stem: 20072, fault:608. flip_cnt: 7, stem_cnt: 1396, fault_cnt:750 -[UP] flip: 1645, stem: 14586, fault:570. flip_cnt: 2, stem_cnt: 1402, fault_cnt:943 -[UP] flip: 1637, stem: 15684, fault:570. flip_cnt: 2, stem_cnt: 1404, fault_cnt:940 -[UP] flip: 0, stem: 17324, fault:779. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1139 -[UP] flip: 2876, stem: 18624, fault:779. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1137 -[UP] flip: 2070, stem: 19885, fault:779. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1140 -[UP] flip: 4972, stem: 21205, fault:779. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1133 -[UP] flip: 2813, stem: 15771, fault:456. flip_cnt: 4, stem_cnt: 1397, fault_cnt:713 -[UP] flip: 0, stem: 17251, fault:475. flip_cnt: 0, stem_cnt: 1397, fault_cnt:720 -[UP] flip: 1178, stem: 18352, fault:475. flip_cnt: 2, stem_cnt: 1396, fault_cnt:717 -[UP] flip: 0, stem: 19532, fault:475. flip_cnt: 0, stem_cnt: 1396, fault_cnt:717 -[UP] flip: 1143, stem: 14872, fault:437. flip_cnt: 2, stem_cnt: 1396, fault_cnt:728 -[UP] flip: 4131, stem: 15953, fault:437. flip_cnt: 7, stem_cnt: 1395, fault_cnt:712 -[UP] flip: 3020, stem: 16533, fault:437. flip_cnt: 5, stem_cnt: 1395, fault_cnt:716 -[UP] flip: 0, stem: 16890, fault:437. flip_cnt: 0, stem_cnt: 1398, fault_cnt:782 -[UP] flip: 933, stem: 18211, fault:437. flip_cnt: 2, stem_cnt: 1397, fault_cnt:779 -[UP] flip: 1148, stem: 18614, fault:817. flip_cnt: 2, stem_cnt: 1394, fault_cnt:1171 -[UP] flip: 0, stem: 16194, fault:798. flip_cnt: 0, stem_cnt: 1394, fault_cnt:1132 -[UP] flip: 4743, stem: 17413, fault:798. flip_cnt: 7, stem_cnt: 1395, fault_cnt:1128 -[UP] flip: 0, stem: 19155, fault:684. flip_cnt: 0, stem_cnt: 1393, fault_cnt:1038 -[UP] flip: 2533, stem: 20313, fault:684. flip_cnt: 5, stem_cnt: 1395, fault_cnt:1041 -[UP] flip: 2467, stem: 20895, fault:703. flip_cnt: 5, stem_cnt: 1393, fault_cnt:1018 -[UP] flip: 2978, stem: 20952, fault:779. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1064 -[UP] flip: 2763, stem: 22312, fault:779. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1051 -[UP] flip: 0, stem: 23612, fault:741. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1006 -[UP] flip: 0, stem: 23791, fault:741. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1005 -[UP] flip: 3751, stem: 24871, fault:741. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1003 -[UP] flip: 4140, stem: 25669, fault:741. flip_cnt: 5, stem_cnt: 1399, fault_cnt:1007 -[UP] flip: 3210, stem: 17292, fault:646. flip_cnt: 5, stem_cnt: 1396, fault_cnt:874 -[UP] flip: 4851, stem: 18310, fault:646. flip_cnt: 5, stem_cnt: 1398, fault_cnt:868 -[UP] flip: 2424, stem: 18586, fault:1045. flip_cnt: 4, stem_cnt: 1402, fault_cnt:1172 -[UP] flip: 0, stem: 17443, fault:969. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1116 -[UP] flip: 4296, stem: 18863, fault:969. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1112 -[UP] flip: 1531, stem: 19725, fault:969. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1110 -[UP] flip: 0, stem: 20805, fault:969. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1110 -[UP] flip: 1377, stem: 18446, fault:1026. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1034 -[UP] flip: 4930, stem: 19606, fault:1007. flip_cnt: 7, stem_cnt: 1402, fault_cnt:1026 -[UP] flip: 1937, stem: 18846, fault:1045. flip_cnt: 3, stem_cnt: 1402, fault_cnt:1105 -[UP] flip: 916, stem: 20104, fault:1045. flip_cnt: 2, stem_cnt: 1404, fault_cnt:1106 -[UP] flip: 2113, stem: 21524, fault:1045. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1104 -[UP] flip: 2718, stem: 22684, fault:1159. flip_cnt: 4, stem_cnt: 1404, fault_cnt:1131 -[UP] flip: 3365, stem: 22450, fault:1121. flip_cnt: 5, stem_cnt: 1398, fault_cnt:1240 -[UP] flip: 2337, stem: 23751, fault:1121. flip_cnt: 4, stem_cnt: 1397, fault_cnt:1238 -[UP] flip: 1470, stem: 24651, fault:1102. flip_cnt: 2, stem_cnt: 1397, fault_cnt:1236 -[UP] flip: 2060, stem: 25991, fault:1102. flip_cnt: 5, stem_cnt: 1397, fault_cnt:1234 -[UP] flip: 0, stem: 21387, fault:1007. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1076 -[UP] flip: 0, stem: 22706, fault:1007. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1076 -[UP] flip: 2448, stem: 22645, fault:988. flip_cnt: 4, stem_cnt: 1403, fault_cnt:1077 -[UP] flip: 4046, stem: 24025, fault:988. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1076 -[UP] flip: 1248, stem: 24666, fault:988. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1084 -[UP] flip: 0, stem: 25906, fault:988. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1084 -[UP] flip: 0, stem: 27026, fault:988. flip_cnt: 0, stem_cnt: 1402, fault_cnt:1084 -[UP] flip: 2090, stem: 23106, fault:1007. flip_cnt: 3, stem_cnt: 1402, fault_cnt:1127 -[UP] flip: 1072, stem: 23746, fault:1007. flip_cnt: 2, stem_cnt: 1402, fault_cnt:1130 -[UP] flip: 0, stem: 22248, fault:1026. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1158 -[UP] flip: 4071, stem: 23425, fault:1026. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1162 -[UP] flip: 0, stem: 24825, fault:1045. flip_cnt: 0, stem_cnt: 1403, fault_cnt:1165 -[UP] flip: 2304, stem: 24945, fault:1026. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1058 -[UP] flip: 0, stem: 25123, fault:1007. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1056 -[UP] flip: 2874, stem: 26163, fault:1007. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1052 -[UP] flip: 4600, stem: 25405, fault:931. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1029 -[UP] flip: 4870, stem: 25665, fault:931. flip_cnt: 7, stem_cnt: 1403, fault_cnt:1021 -[UP] flip: 0, stem: 20029, fault:475. flip_cnt: 0, stem_cnt: 1399, fault_cnt:773 -[UP] flip: 6577, stem: 21469, fault:475. flip_cnt: 7, stem_cnt: 1399, fault_cnt:769 -[UP] flip: 1338, stem: 22586, fault:513. flip_cnt: 2, stem_cnt: 1402, fault_cnt:826 -[UP] flip: 2865, stem: 23545, fault:513. flip_cnt: 4, stem_cnt: 1403, fault_cnt:825 -[UP] flip: 0, stem: 23967, fault:817. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1095 -[UP] flip: 4131, stem: 24428, fault:817. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1094 -[UP] flip: 1268, stem: 25448, fault:912. flip_cnt: 3, stem_cnt: 1400, fault_cnt:1197 -[UP] flip: 0, stem: 23789, fault:912. flip_cnt: 0, stem_cnt: 1399, fault_cnt:1218 -[UP] flip: 0, stem: 22627, fault:1045. flip_cnt: 0, stem_cnt: 1401, fault_cnt:1257 -[UP] flip: 3985, stem: 23805, fault:1045. flip_cnt: 5, stem_cnt: 1403, fault_cnt:1259 -[UP] flip: 5304, stem: 24966, fault:1140. flip_cnt: 5, stem_cnt: 1402, fault_cnt:1341 -[UP] flip: 1169, stem: 26567, fault:1140. flip_cnt: 2, stem_cnt: 1401, fault_cnt:1338 -[UP] flip: 4196, stem: 27204, fault:1140. flip_cnt: 7, stem_cnt: 1404, fault_cnt:1333 -[UP] flip: 1226, stem: 28305, fault:1045. flip_cnt: 2, stem_cnt: 1403, fault_cnt:1261 -[UP] flip: 0, stem: 23851, fault:779. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1028 -[UP] flip: 0, stem: 22972, fault:779. flip_cnt: 0, stem_cnt: 1396, fault_cnt:1003 -[UP] flip: 0, stem: 24371, fault:779. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1003 -[UP] flip: 0, stem: 25851, fault:779. flip_cnt: 0, stem_cnt: 1397, fault_cnt:1003 -[UP] flip: 2196, stem: 26632, fault:779. flip_cnt: 3, stem_cnt: 1396, fault_cnt:1002 -[UP] flip: 3698, stem: 24578, fault:798. flip_cnt: 5, stem_cnt: 1390, fault_cnt:989 -[UP] flip: 1589, stem: 25975, fault:874. flip_cnt: 2, stem_cnt: 1393, fault_cnt:1002 -[UP] flip: 6549, stem: 27615, fault:874. flip_cnt: 7, stem_cnt: 1393, fault_cnt:998 -[UP] flip: 0, stem: 24874, fault:646. flip_cnt: 0, stem_cnt: 1394, fault_cnt:853 -[UP] flip: 0, stem: 25996, fault:646. flip_cnt: 0, stem_cnt: 1392, fault_cnt:853 -[UP] flip: 1338, stem: 25616, fault:912. flip_cnt: 2, stem_cnt: 1392, fault_cnt:1200 -[UP] flip: 4156, stem: 26976, fault:836. flip_cnt: 5, stem_cnt: 1392, fault_cnt:1174 -[UP] flip: 3975, stem: 27554, fault:798. flip_cnt: 5, stem_cnt: 1394, fault_cnt:1159 -[UP] flip: 1143, stem: 26932, fault:817. flip_cnt: 2, stem_cnt: 1396, fault_cnt:1136 -[UP] flip: 3129, stem: 28412, fault:817. flip_cnt: 5, stem_cnt: 1396, fault_cnt:1134 -[UP] flip: 2386, stem: 29333, fault:817. flip_cnt: 4, stem_cnt: 1395, fault_cnt:1129 -[UP] flip: 0, stem: 26042, fault:893. flip_cnt: 0, stem_cnt: 1406, fault_cnt:873 -[UP] flip: 1606, stem: 27083, fault:874. flip_cnt: 2, stem_cnt: 1405, fault_cnt:870 -[UP] flip: 0, stem: 27040, fault:1045. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1136 -[UP] flip: 4080, stem: 28080, fault:1045. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1132 -[UP] flip: 2741, stem: 29220, fault:1045. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1129 -[UP] flip: 0, stem: 23141, fault:1083. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1392 -[UP] flip: 0, stem: 23880, fault:1083. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1392 -[UP] flip: 0, stem: 25500, fault:1083. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1397 -[UP] flip: 2621, stem: 26781, fault:1083. flip_cnt: 4, stem_cnt: 1407, fault_cnt:1395 -[UP] flip: 0, stem: 27841, fault:1083. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1394 -[UP] flip: 0, stem: 29081, fault:1102. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1403 -[UP] flip: 3182, stem: 30181, fault:1102. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1403 -[UP] flip: 2368, stem: 27481, fault:1406. flip_cnt: 3, stem_cnt: 1407, fault_cnt:1546 -[UP] flip: 851, stem: 28861, fault:1406. flip_cnt: 2, stem_cnt: 1407, fault_cnt:1547 -[UP] flip: 4238, stem: 30061, fault:1368. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1544 -[UP] flip: 2698, stem: 30640, fault:1349. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1537 -[UP] flip: 0, stem: 30702, fault:1349. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1533 -[UP] flip: 0, stem: 31342, fault:1349. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1533 -[UP] flip: 3278, stem: 26468, fault:969. flip_cnt: 4, stem_cnt: 1400, fault_cnt:1179 -[UP] flip: 0, stem: 24510, fault:912. flip_cnt: 0, stem_cnt: 1398, fault_cnt:1080 -[UP] flip: 0, stem: 26508, fault:912. flip_cnt: 0, stem_cnt: 1400, fault_cnt:1091 -[UP] flip: 4814, stem: 26028, fault:893. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1089 -[UP] flip: 4479, stem: 27208, fault:874. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1072 -[UP] flip: 4071, stem: 28308, fault:855. flip_cnt: 5, stem_cnt: 1400, fault_cnt:1061 -[UP] flip: 2789, stem: 27728, fault:380. flip_cnt: 4, stem_cnt: 1400, fault_cnt:498 -[UP] flip: 0, stem: 26104, fault:456. flip_cnt: 0, stem_cnt: 1404, fault_cnt:572 -[UP] flip: 0, stem: 27504, fault:456. flip_cnt: 0, stem_cnt: 1404, fault_cnt:572 -[UP] flip: 1253, stem: 25728, fault:779. flip_cnt: 2, stem_cnt: 1400, fault_cnt:888 -[UP] flip: 2268, stem: 22865, fault:665. flip_cnt: 4, stem_cnt: 1403, fault_cnt:789 -[UP] flip: 0, stem: 23504, fault:665. flip_cnt: 0, stem_cnt: 1404, fault_cnt:800 -[UP] flip: 5276, stem: 24463, fault:665. flip_cnt: 5, stem_cnt: 1405, fault_cnt:802 -[UP] flip: 1711, stem: 25823, fault:684. flip_cnt: 3, stem_cnt: 1405, fault_cnt:811 -[UP] flip: 1408, stem: 27123, fault:684. flip_cnt: 2, stem_cnt: 1405, fault_cnt:810 -[UP] flip: 0, stem: 27481, fault:703. flip_cnt: 0, stem_cnt: 1407, fault_cnt:828 -[UP] flip: 4059, stem: 26378, fault:361. flip_cnt: 5, stem_cnt: 1410, fault_cnt:469 -[UP] flip: 3623, stem: 27316, fault:399. flip_cnt: 5, stem_cnt: 1412, fault_cnt:476 -[UP] flip: 0, stem: 26357, fault:418. flip_cnt: 0, stem_cnt: 1411, fault_cnt:549 -[UP] flip: 4137, stem: 27195, fault:418. flip_cnt: 5, stem_cnt: 1413, fault_cnt:545 -[UP] flip: 0, stem: 28575, fault:418. flip_cnt: 0, stem_cnt: 1413, fault_cnt:545 -[UP] flip: 4396, stem: 29255, fault:418. flip_cnt: 5, stem_cnt: 1413, fault_cnt:543 -[UP] flip: 1222, stem: 28557, fault:418. flip_cnt: 2, stem_cnt: 1411, fault_cnt:542 -[UP] flip: 5398, stem: 29496, fault:456. flip_cnt: 5, stem_cnt: 1412, fault_cnt:595 -[UP] flip: 0, stem: 30655, fault:456. flip_cnt: 0, stem_cnt: 1413, fault_cnt:595 -[UP] flip: 3112, stem: 24639, fault:456. flip_cnt: 5, stem_cnt: 1409, fault_cnt:587 -[UP] flip: 0, stem: 25519, fault:456. flip_cnt: 0, stem_cnt: 1409, fault_cnt:594 -[UP] flip: 0, stem: 26899, fault:456. flip_cnt: 0, stem_cnt: 1409, fault_cnt:594 -[UP] flip: 2663, stem: 26118, fault:551. flip_cnt: 5, stem_cnt: 1410, fault_cnt:680 -[UP] flip: 4887, stem: 27358, fault:570. flip_cnt: 5, stem_cnt: 1410, fault_cnt:684 -[UP] flip: 3557, stem: 26719, fault:570. flip_cnt: 7, stem_cnt: 1409, fault_cnt:677 -[UP] flip: 4813, stem: 25183, fault:1007. flip_cnt: 5, stem_cnt: 1405, fault_cnt:873 -[UP] flip: 0, stem: 26205, fault:1007. flip_cnt: 0, stem_cnt: 1403, fault_cnt:873 -[UP] flip: 1652, stem: 26227, fault:950. flip_cnt: 2, stem_cnt: 1401, fault_cnt:827 -[UP] flip: 0, stem: 25199, fault:1026. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1006 -[UP] flip: 0, stem: 26499, fault:1026. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1006 -[UP] flip: 0, stem: 27620, fault:1026. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1006 -[UP] flip: 1357, stem: 27120, fault:1026. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1005 -[UP] flip: 3915, stem: 28400, fault:1026. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1002 -[UP] flip: 0, stem: 27880, fault:1026. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1020 -[UP] flip: 4264, stem: 27144, fault:1026. flip_cnt: 4, stem_cnt: 1404, fault_cnt:990 -[UP] flip: 0, stem: 28124, fault:1007. flip_cnt: 0, stem_cnt: 1404, fault_cnt:962 -[UP] flip: 2999, stem: 27447, fault:1007. flip_cnt: 4, stem_cnt: 1401, fault_cnt:893 -[UP] flip: 0, stem: 27906, fault:1007. flip_cnt: 0, stem_cnt: 1402, fault_cnt:884 -[UP] flip: 1197, stem: 25023, fault:1007. flip_cnt: 2, stem_cnt: 1405, fault_cnt:883 -[UP] flip: 0, stem: 25842, fault:1349. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1217 -[UP] flip: 0, stem: 26499, fault:1349. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1251 -[UP] flip: 5041, stem: 26939, fault:1330. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1252 -[UP] flip: 0, stem: 28079, fault:1330. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1252 -[UP] flip: 4118, stem: 25823, fault:1254. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1200 -[UP] flip: 0, stem: 26983, fault:1254. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1200 -[UP] flip: 4210, stem: 28024, fault:1254. flip_cnt: 5, stem_cnt: 1404, fault_cnt:1198 -[UP] flip: 0, stem: 29204, fault:1178. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1141 -[UP] flip: 0, stem: 27361, fault:1178. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1144 -[UP] flip: 2972, stem: 28241, fault:1178. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1146 -[UP] flip: 0, stem: 26863, fault:1254. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1288 -[UP] flip: 3139, stem: 22961, fault:1159. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1148 -[UP] flip: 5234, stem: 22520, fault:1045. flip_cnt: 7, stem_cnt: 1408, fault_cnt:1101 -[UP] flip: 3759, stem: 23317, fault:1045. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1167 -[UP] flip: 0, stem: 24358, fault:1045. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1179 -[UP] flip: 1566, stem: 25798, fault:1045. flip_cnt: 3, stem_cnt: 1410, fault_cnt:1180 -[UP] flip: 5120, stem: 26978, fault:1045. flip_cnt: 7, stem_cnt: 1410, fault_cnt:1178 -[UP] flip: 0, stem: 28017, fault:1045. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1172 -[UP] flip: 2869, stem: 28816, fault:1045. flip_cnt: 4, stem_cnt: 1412, fault_cnt:1173 -[UP] flip: 3352, stem: 29916, fault:1045. flip_cnt: 5, stem_cnt: 1412, fault_cnt:1176 -[UP] flip: 2522, stem: 30135, fault:1045. flip_cnt: 4, stem_cnt: 1413, fault_cnt:1176 -[UP] flip: 0, stem: 29235, fault:1045. flip_cnt: 0, stem_cnt: 1413, fault_cnt:1180 -[UP] flip: 3216, stem: 27963, fault:1007. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1143 -[UP] flip: 2953, stem: 26398, fault:1140. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1384 -[UP] flip: 0, stem: 27278, fault:1140. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1383 -[UP] flip: 5452, stem: 24096, fault:1197. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1460 -[UP] flip: 1441, stem: 25237, fault:1197. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1455 -[UP] flip: 3622, stem: 26437, fault:1197. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1451 -[UP] flip: 3057, stem: 27157, fault:1197. flip_cnt: 4, stem_cnt: 1411, fault_cnt:1447 -[UP] flip: 4444, stem: 28217, fault:1254. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1455 -[UP] flip: 0, stem: 27121, fault:1083. flip_cnt: 0, stem_cnt: 1407, fault_cnt:1229 -[UP] flip: 3209, stem: 28161, fault:1083. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1226 -[UP] flip: 6051, stem: 29301, fault:1083. flip_cnt: 7, stem_cnt: 1407, fault_cnt:1220 -[UP] flip: 1085, stem: 30302, fault:1083. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1215 -[UP] flip: 3036, stem: 21693, fault:1197. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1466 -[UP] flip: 1194, stem: 21972, fault:1216. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1484 -[UP] flip: 1393, stem: 22831, fault:1216. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1483 -[UP] flip: 1026, stem: 23452, fault:1216. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1480 -[UP] flip: 2809, stem: 24493, fault:1216. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1483 -[UP] flip: 5276, stem: 25171, fault:1216. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1478 -[UP] flip: 4940, stem: 19454, fault:1045. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1357 -[UP] flip: 3903, stem: 20574, fault:1045. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1353 -[UP] flip: 0, stem: 19238, fault:874. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1233 -[UP] flip: 3560, stem: 20438, fault:874. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1231 -[UP] flip: 0, stem: 18312, fault:1102. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1436 -[UP] flip: 1312, stem: 22093, fault:1102. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1433 -[UP] flip: 4322, stem: 23113, fault:1102. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1434 -[UP] flip: 0, stem: 24093, fault:1102. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1454 -[UP] flip: 972, stem: 25254, fault:1102. flip_cnt: 2, stem_cnt: 1414, fault_cnt:1451 -[UP] flip: 4518, stem: 20994, fault:1102. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1448 -[UP] flip: 2382, stem: 21834, fault:1083. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1438 -[UP] flip: 4499, stem: 22194, fault:1007. flip_cnt: 7, stem_cnt: 1414, fault_cnt:1402 -[UP] flip: 4255, stem: 23214, fault:1007. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1398 -[UP] flip: 6380, stem: 21045, fault:1121. flip_cnt: 7, stem_cnt: 1423, fault_cnt:1536 -[UP] flip: 3296, stem: 21204, fault:1121. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1533 -[UP] flip: 3277, stem: 19184, fault:1140. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1534 -[UP] flip: 0, stem: 20204, fault:1178. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1548 -[UP] flip: 3276, stem: 19304, fault:1197. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1569 -[UP] flip: 1039, stem: 20424, fault:1197. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1568 -[UP] flip: 3289, stem: 21244, fault:1197. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1564 -[UP] flip: 1477, stem: 22525, fault:1197. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1553 -[UP] flip: 0, stem: 23424, fault:1197. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1553 -[UP] flip: 0, stem: 21443, fault:1216. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1586 -[UP] flip: 4395, stem: 22063, fault:1216. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1582 -[UP] flip: 1299, stem: 22025, fault:1292. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1583 -[UP] flip: 3889, stem: 17028, fault:1292. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1567 -[UP] flip: 5263, stem: 17448, fault:1254. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1554 -[UP] flip: 3201, stem: 18788, fault:1254. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1550 -[UP] flip: 1839, stem: 19968, fault:1216. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1558 -[UP] flip: 0, stem: 20969, fault:1216. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1558 -[UP] flip: 0, stem: 22151, fault:1216. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1545 -[UP] flip: 4273, stem: 20395, fault:1102. flip_cnt: 5, stem_cnt: 1413, fault_cnt:1430 -[UP] flip: 1153, stem: 19983, fault:1026. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1345 -[UP] flip: 2362, stem: 21182, fault:1026. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1341 -[UP] flip: 0, stem: 22142, fault:1026. flip_cnt: 0, stem_cnt: 1406, fault_cnt:1336 -[UP] flip: 2399, stem: 23242, fault:1026. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1333 -[UP] flip: 1754, stem: 24503, fault:1007. flip_cnt: 2, stem_cnt: 1405, fault_cnt:1328 -[UP] flip: 0, stem: 25623, fault:1007. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1328 -[UP] flip: 0, stem: 26163, fault:1007. flip_cnt: 0, stem_cnt: 1405, fault_cnt:1328 -[UP] flip: 2990, stem: 27303, fault:1007. flip_cnt: 5, stem_cnt: 1405, fault_cnt:1326 -[UP] flip: 0, stem: 24504, fault:950. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1235 -[UP] flip: 4369, stem: 19242, fault:893. flip_cnt: 5, stem_cnt: 1406, fault_cnt:1289 -[UP] flip: 4069, stem: 19980, fault:893. flip_cnt: 5, stem_cnt: 1408, fault_cnt:1313 -[UP] flip: 3095, stem: 18980, fault:1083. flip_cnt: 4, stem_cnt: 1408, fault_cnt:1492 -[UP] flip: 1364, stem: 20219, fault:1159. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1496 -[UP] flip: 1298, stem: 21819, fault:1178. flip_cnt: 3, stem_cnt: 1409, fault_cnt:1522 -[UP] flip: 0, stem: 21496, fault:1178. flip_cnt: 0, stem_cnt: 1412, fault_cnt:1510 -[UP] flip: 5321, stem: 22876, fault:1178. flip_cnt: 7, stem_cnt: 1412, fault_cnt:1506 -[UP] flip: 1030, stem: 24317, fault:1178. flip_cnt: 2, stem_cnt: 1411, fault_cnt:1514 -[UP] flip: 4384, stem: 25557, fault:1178. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1511 -[UP] flip: 2568, stem: 26617, fault:1178. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1509 -[UP] flip: 4375, stem: 27817, fault:1178. flip_cnt: 5, stem_cnt: 1411, fault_cnt:1511 -[UP] flip: 1705, stem: 28180, fault:1178. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1512 -[UP] flip: 2874, stem: 24218, fault:1197. flip_cnt: 4, stem_cnt: 1410, fault_cnt:1548 -[UP] flip: 0, stem: 25058, fault:1197. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1549 -[UP] flip: 1161, stem: 25878, fault:1197. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1548 -[UP] flip: 2934, stem: 27258, fault:1197. flip_cnt: 5, stem_cnt: 1410, fault_cnt:1498 -[UP] flip: 2946, stem: 28498, fault:1197. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1493 -[UP] flip: 3059, stem: 28458, fault:1197. flip_cnt: 2, stem_cnt: 1410, fault_cnt:1491 -[UP] flip: 0, stem: 27217, fault:1216. flip_cnt: 0, stem_cnt: 1411, fault_cnt:1566 -[UP] flip: 5613, stem: 28337, fault:1216. flip_cnt: 7, stem_cnt: 1411, fault_cnt:1562 -[UP] flip: 0, stem: 27639, fault:1216. flip_cnt: 0, stem_cnt: 1409, fault_cnt:1551 -[UP] flip: 1382, stem: 28260, fault:1216. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1545 -[UP] flip: 2587, stem: 26703, fault:1159. flip_cnt: 4, stem_cnt: 1405, fault_cnt:1508 -[UP] flip: 0, stem: 27384, fault:1178. flip_cnt: 0, stem_cnt: 1404, fault_cnt:1506 -[UP] flip: 4899, stem: 27263, fault:1178. flip_cnt: 7, stem_cnt: 1405, fault_cnt:1502 -[UP] flip: 0, stem: 22900, fault:1311. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1542 -[UP] flip: 2981, stem: 24482, fault:1292. flip_cnt: 2, stem_cnt: 1406, fault_cnt:1528 -[UP] flip: 0, stem: 24540, fault:1273. flip_cnt: 0, stem_cnt: 1408, fault_cnt:1507 -[UP] flip: 0, stem: 25318, fault:1273. flip_cnt: 0, stem_cnt: 1410, fault_cnt:1507 -[UP] flip: 1922, stem: 26579, fault:1273. flip_cnt: 4, stem_cnt: 1409, fault_cnt:1505 -[UP] flip: 2115, stem: 22102, fault:1311. flip_cnt: 3, stem_cnt: 1406, fault_cnt:1370 -[UP] flip: 4620, stem: 22561, fault:1311. flip_cnt: 5, stem_cnt: 1407, fault_cnt:1373 -[UP] flip: 5388, stem: 22779, fault:1311. flip_cnt: 7, stem_cnt: 1409, fault_cnt:1376 -[UP] flip: 3087, stem: 23579, fault:1311. flip_cnt: 2, stem_cnt: 1409, fault_cnt:1380 -[UP] flip: 1578, stem: 24619, fault:1311. flip_cnt: 3, stem_cnt: 1409, fault_cnt:1377 -[UP] flip: 2932, stem: 25820, fault:1311. flip_cnt: 2, stem_cnt: 1408, fault_cnt:1378 -[UP] flip: 4027, stem: 20574, fault:1539. flip_cnt: 5, stem_cnt: 1414, fault_cnt:1661 -[UP] flip: 0, stem: 21092, fault:1558. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1726 -[UP] flip: 1665, stem: 21809, fault:1558. flip_cnt: 3, stem_cnt: 1419, fault_cnt:1725 -[UP] flip: 2244, stem: 22025, fault:1634. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1735 -[UP] flip: 2429, stem: 22844, fault:1634. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1736 -[UP] flip: 3582, stem: 23384, fault:1634. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1757 -[UP] flip: 5890, stem: 24424, fault:1634. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1754 -[UP] flip: 3012, stem: 24983, fault:1634. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1762 -[UP] flip: 2606, stem: 25644, fault:1634. flip_cnt: 4, stem_cnt: 1424, fault_cnt:1760 -[UP] flip: 5400, stem: 26444, fault:1615. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1726 -[UP] flip: 4214, stem: 27045, fault:1615. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1721 -[UP] flip: 3304, stem: 27766, fault:1615. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1726 -[UP] flip: 1506, stem: 28726, fault:1615. flip_cnt: 3, stem_cnt: 1422, fault_cnt:1725 -[UP] flip: 4910, stem: 27686, fault:1520. flip_cnt: 4, stem_cnt: 1422, fault_cnt:1687 -[UP] flip: 5444, stem: 28206, fault:1482. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1683 -[UP] flip: 3057, stem: 28906, fault:1463. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1677 -[UP] flip: 1147, stem: 24464, fault:1539. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1696 -[UP] flip: 3978, stem: 24184, fault:1520. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1711 -[UP] flip: 4650, stem: 24962, fault:1558. flip_cnt: 4, stem_cnt: 1426, fault_cnt:1725 -[UP] flip: 2381, stem: 25362, fault:1558. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1745 -[UP] flip: 4525, stem: 26362, fault:1558. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1741 -[UP] flip: 0, stem: 27082, fault:1577. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1769 -[UP] flip: 6431, stem: 27482, fault:1577. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1765 -[UP] flip: 3389, stem: 28482, fault:1577. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1761 -[UP] flip: 1446, stem: 21125, fault:1520. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1700 -[UP] flip: 0, stem: 21585, fault:1520. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1697 -[UP] flip: 6481, stem: 21943, fault:1520. flip_cnt: 6, stem_cnt: 1425, fault_cnt:1700 -[UP] flip: 1194, stem: 22903, fault:1520. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1699 -[UP] flip: 2105, stem: 18646, fault:1406. flip_cnt: 3, stem_cnt: 1422, fault_cnt:1615 -[UP] flip: 0, stem: 19805, fault:1387. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1593 -[UP] flip: 2091, stem: 17771, fault:1406. flip_cnt: 4, stem_cnt: 1417, fault_cnt:1621 -[UP] flip: 3107, stem: 18791, fault:1406. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1619 -[UP] flip: 3139, stem: 19651, fault:1406. flip_cnt: 2, stem_cnt: 1417, fault_cnt:1620 -[UP] flip: 0, stem: 20451, fault:1406. flip_cnt: 0, stem_cnt: 1417, fault_cnt:1620 -[UP] flip: 0, stem: 18412, fault:1387. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1615 -[UP] flip: 2705, stem: 19672, fault:1387. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1617 -[UP] flip: 1297, stem: 20573, fault:1444. flip_cnt: 2, stem_cnt: 1415, fault_cnt:1650 -[UP] flip: 4825, stem: 21613, fault:1406. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1646 -[UP] flip: 3621, stem: 22713, fault:1406. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1643 -[UP] flip: 4474, stem: 26073, fault:1406. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1640 -[UP] flip: 1553, stem: 26933, fault:1387. flip_cnt: 3, stem_cnt: 1415, fault_cnt:1637 -[UP] flip: 0, stem: 27433, fault:1387. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1637 -[UP] flip: 2384, stem: 28011, fault:1387. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1641 -[UP] flip: 1617, stem: 18127, fault:1406. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1698 -[UP] flip: 1470, stem: 18788, fault:1406. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1695 -[UP] flip: 4404, stem: 19788, fault:1406. flip_cnt: 5, stem_cnt: 1420, fault_cnt:1692 -[UP] flip: 5700, stem: 20150, fault:1368. flip_cnt: 7, stem_cnt: 1418, fault_cnt:1690 -[UP] flip: 4640, stem: 20948, fault:1368. flip_cnt: 9, stem_cnt: 1420, fault_cnt:1694 -[UP] flip: 5178, stem: 21308, fault:1368. flip_cnt: 7, stem_cnt: 1420, fault_cnt:1698 -[UP] flip: 0, stem: 21712, fault:1349. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1652 -[UP] flip: 2520, stem: 22592, fault:1349. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1650 -[UP] flip: 2749, stem: 23612, fault:1349. flip_cnt: 3, stem_cnt: 1416, fault_cnt:1647 -[UP] flip: 7407, stem: 24692, fault:1330. flip_cnt: 7, stem_cnt: 1416, fault_cnt:1643 -[UP] flip: 0, stem: 25872, fault:1330. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1643 -[UP] flip: 4601, stem: 26532, fault:1330. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1641 -[UP] flip: 2615, stem: 27293, fault:1330. flip_cnt: 4, stem_cnt: 1415, fault_cnt:1629 -[UP] flip: 0, stem: 16633, fault:1311. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1619 -[UP] flip: 0, stem: 17873, fault:1311. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1619 -[UP] flip: 3444, stem: 18753, fault:1311. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1617 -[UP] flip: 4464, stem: 19973, fault:1311. flip_cnt: 5, stem_cnt: 1415, fault_cnt:1521 -[UP] flip: 0, stem: 21193, fault:1311. flip_cnt: 0, stem_cnt: 1415, fault_cnt:1519 -[UP] flip: 2830, stem: 22091, fault:1311. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1522 -[UP] flip: 2594, stem: 22850, fault:1311. flip_cnt: 5, stem_cnt: 1418, fault_cnt:1551 -[UP] flip: 0, stem: 21972, fault:1311. flip_cnt: 0, stem_cnt: 1416, fault_cnt:1553 -[UP] flip: 4418, stem: 22872, fault:1311. flip_cnt: 5, stem_cnt: 1416, fault_cnt:1551 -[UP] flip: 2948, stem: 23931, fault:1311. flip_cnt: 5, stem_cnt: 1417, fault_cnt:1544 -[UP] flip: 1076, stem: 24732, fault:1273. flip_cnt: 2, stem_cnt: 1416, fault_cnt:1535 -[UP] flip: 2908, stem: 17123, fault:1254. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1479 -[UP] flip: 4878, stem: 17423, fault:1254. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1471 -[UP] flip: 0, stem: 16819, fault:1330. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1528 -[UP] flip: 5917, stem: 17699, fault:1330. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1524 -[UP] flip: 5798, stem: 18339, fault:1330. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1510 -[UP] flip: 1940, stem: 18377, fault:1330. flip_cnt: 3, stem_cnt: 1431, fault_cnt:1514 -[UP] flip: 1834, stem: 17915, fault:1349. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1538 -[UP] flip: 0, stem: 19015, fault:1349. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1538 -[UP] flip: 2895, stem: 19655, fault:1349. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1535 -[UP] flip: 0, stem: 20758, fault:1349. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1526 -[UP] flip: 5584, stem: 21478, fault:1349. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1522 -[UP] flip: 4449, stem: 21836, fault:1349. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1521 -[UP] flip: 1027, stem: 24417, fault:1406. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1564 -[UP] flip: 5171, stem: 24638, fault:1406. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1560 -[UP] flip: 3935, stem: 24536, fault:1406. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1556 -[UP] flip: 4728, stem: 25716, fault:1368. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1526 -[UP] flip: 1193, stem: 25977, fault:1368. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1525 -[UP] flip: 1113, stem: 26398, fault:1368. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1522 -[UP] flip: 3213, stem: 25658, fault:1368. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1527 -[UP] flip: 4770, stem: 25699, fault:1349. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1518 -[UP] flip: 0, stem: 26499, fault:1349. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1518 -[UP] flip: 1789, stem: 27059, fault:1349. flip_cnt: 3, stem_cnt: 1429, fault_cnt:1529 -[UP] flip: 4919, stem: 27057, fault:1349. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1533 -[UP] flip: 6253, stem: 27497, fault:1349. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1515 -[UP] flip: 1006, stem: 27858, fault:1349. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1512 -[UP] flip: 4430, stem: 28156, fault:1349. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1514 -[UP] flip: 2550, stem: 24602, fault:1368. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1516 -[UP] flip: 4542, stem: 25522, fault:1368. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1512 -[UP] flip: 994, stem: 26143, fault:1368. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1509 -[UP] flip: 5734, stem: 27143, fault:1368. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1505 -[UP] flip: 6819, stem: 27683, fault:1368. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1501 -[UP] flip: 2952, stem: 30605, fault:1292. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1457 -[UP] flip: 1256, stem: 30946, fault:1292. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1453 -[UP] flip: 6876, stem: 30486, fault:1292. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1454 -[UP] flip: 4281, stem: 31386, fault:1273. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1463 -[UP] flip: 0, stem: 32066, fault:1273. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1463 -[UP] flip: 1116, stem: 30787, fault:1273. flip_cnt: 2, stem_cnt: 1421, fault_cnt:1463 -[UP] flip: 0, stem: 31507, fault:1273. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1463 -[UP] flip: 1640, stem: 31585, fault:1273. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1464 -[UP] flip: 6223, stem: 27711, fault:798. flip_cnt: 7, stem_cnt: 1417, fault_cnt:1143 -[UP] flip: 2168, stem: 28451, fault:798. flip_cnt: 3, stem_cnt: 1417, fault_cnt:1144 -[UP] flip: 4858, stem: 25646, fault:1045. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1273 -[UP] flip: 5377, stem: 25986, fault:1045. flip_cnt: 5, stem_cnt: 1422, fault_cnt:1271 -[UP] flip: 0, stem: 26646, fault:1045. flip_cnt: 0, stem_cnt: 1422, fault_cnt:1271 -[UP] flip: 3099, stem: 26303, fault:1045. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1267 -[UP] flip: 1696, stem: 26744, fault:931. flip_cnt: 3, stem_cnt: 1424, fault_cnt:1200 -[UP] flip: 6662, stem: 24064, fault:912. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1202 -[UP] flip: 1461, stem: 25024, fault:912. flip_cnt: 3, stem_cnt: 1424, fault_cnt:1199 -[UP] flip: 0, stem: 26145, fault:912. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1199 -[UP] flip: 1291, stem: 26466, fault:912. flip_cnt: 2, stem_cnt: 1422, fault_cnt:1196 -[UP] flip: 2825, stem: 22946, fault:912. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1197 -[UP] flip: 7625, stem: 23946, fault:912. flip_cnt: 7, stem_cnt: 1422, fault_cnt:1201 -[UP] flip: 3195, stem: 23389, fault:1007. flip_cnt: 2, stem_cnt: 1419, fault_cnt:1318 -[UP] flip: 0, stem: 24269, fault:1007. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1318 -[UP] flip: 5314, stem: 23949, fault:1007. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1314 -[UP] flip: 6327, stem: 24527, fault:988. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1310 -[UP] flip: 4572, stem: 24967, fault:988. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1317 -[UP] flip: 0, stem: 25808, fault:988. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1328 -[UP] flip: 0, stem: 26708, fault:988. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1328 -[UP] flip: 2922, stem: 26907, fault:988. flip_cnt: 5, stem_cnt: 1421, fault_cnt:1331 -[UP] flip: 0, stem: 27567, fault:1026. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1361 -[UP] flip: 0, stem: 28487, fault:1026. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1380 -[UP] flip: 0, stem: 29267, fault:1026. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1380 -[UP] flip: 3548, stem: 27522, fault:1102. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1371 -[UP] flip: 1422, stem: 28243, fault:1254. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1390 -[UP] flip: 3217, stem: 28525, fault:1254. flip_cnt: 4, stem_cnt: 1423, fault_cnt:1388 -[UP] flip: 1683, stem: 28365, fault:1216. flip_cnt: 3, stem_cnt: 1423, fault_cnt:1380 -[UP] flip: 3101, stem: 27263, fault:1216. flip_cnt: 5, stem_cnt: 1425, fault_cnt:1367 -[UP] flip: 0, stem: 21144, fault:722. flip_cnt: 0, stem_cnt: 1424, fault_cnt:915 -[UP] flip: 0, stem: 19421, fault:798. flip_cnt: 0, stem_cnt: 1427, fault_cnt:957 -[UP] flip: 0, stem: 17981, fault:798. flip_cnt: 0, stem_cnt: 1427, fault_cnt:944 -[UP] flip: 0, stem: 18861, fault:798. flip_cnt: 0, stem_cnt: 1427, fault_cnt:944 -[UP] flip: 0, stem: 20301, fault:798. flip_cnt: 0, stem_cnt: 1427, fault_cnt:944 -[UP] flip: 3481, stem: 20938, fault:798. flip_cnt: 5, stem_cnt: 1430, fault_cnt:942 -[UP] flip: 1299, stem: 21997, fault:798. flip_cnt: 2, stem_cnt: 1431, fault_cnt:945 -[UP] flip: 4737, stem: 23497, fault:798. flip_cnt: 5, stem_cnt: 1431, fault_cnt:944 -[UP] flip: 5313, stem: 24537, fault:798. flip_cnt: 7, stem_cnt: 1431, fault_cnt:937 -[UP] flip: 3362, stem: 23237, fault:798. flip_cnt: 2, stem_cnt: 1431, fault_cnt:936 -[UP] flip: 0, stem: 19698, fault:836. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1069 -[UP] flip: 4019, stem: 20378, fault:836. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1067 -[UP] flip: 0, stem: 20418, fault:836. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1067 -[UP] flip: 0, stem: 20179, fault:836. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1076 -[UP] flip: 3363, stem: 18959, fault:1026. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1215 -[UP] flip: 5291, stem: 19879, fault:1026. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1251 -[UP] flip: 1305, stem: 20217, fault:1026. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1245 -[UP] flip: 0, stem: 20597, fault:1026. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1245 -[UP] flip: 4395, stem: 21095, fault:1026. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1248 -[UP] flip: 2770, stem: 20915, fault:1026. flip_cnt: 4, stem_cnt: 1433, fault_cnt:1248 -[UP] flip: 0, stem: 21235, fault:1045. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1269 -[UP] flip: 2014, stem: 20655, fault:1045. flip_cnt: 3, stem_cnt: 1433, fault_cnt:1264 -[UP] flip: 7247, stem: 21515, fault:1045. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1260 -[UP] flip: 5697, stem: 21975, fault:1045. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1258 -[UP] flip: 0, stem: 21915, fault:1045. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1258 -[UP] flip: 3205, stem: 22915, fault:1045. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1254 -[UP] flip: 6258, stem: 23535, fault:1026. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1226 -[UP] flip: 0, stem: 23635, fault:1026. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1226 -[UP] flip: 0, stem: 24575, fault:1026. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1226 -[UP] flip: 0, stem: 25177, fault:1064. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1227 -[UP] flip: 4758, stem: 26257, fault:1064. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1224 -[UP] flip: 0, stem: 27279, fault:1064. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1224 -[UP] flip: 0, stem: 22483, fault:1064. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1206 -[UP] flip: 4369, stem: 23001, fault:1064. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1204 -[UP] flip: 0, stem: 21641, fault:1064. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1194 -[UP] flip: 0, stem: 22081, fault:1064. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1194 -[UP] flip: 2287, stem: 20724, fault:1026. flip_cnt: 3, stem_cnt: 1424, fault_cnt:1095 -[UP] flip: 2957, stem: 21724, fault:1026. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1101 -[UP] flip: 5552, stem: 22524, fault:1026. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1077 -[UP] flip: 0, stem: 23183, fault:1026. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1073 -[UP] flip: 5701, stem: 22384, fault:1026. flip_cnt: 5, stem_cnt: 1424, fault_cnt:1072 -[UP] flip: 6121, stem: 23864, fault:1026. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1095 -[UP] flip: 0, stem: 24124, fault:1026. flip_cnt: 0, stem_cnt: 1424, fault_cnt:1095 -[UP] flip: 0, stem: 23988, fault:1045. flip_cnt: 0, stem_cnt: 1420, fault_cnt:1111 -[UP] flip: 0, stem: 24787, fault:1045. flip_cnt: 0, stem_cnt: 1421, fault_cnt:1111 -[UP] flip: 0, stem: 25285, fault:1045. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1111 -[UP] flip: 4162, stem: 24062, fault:1007. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1109 -[UP] flip: 0, stem: 25262, fault:1007. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1113 -[UP] flip: 4508, stem: 26322, fault:1007. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1111 -[UP] flip: 1104, stem: 27583, fault:988. flip_cnt: 2, stem_cnt: 1425, fault_cnt:1110 -[UP] flip: 1298, stem: 26762, fault:1007. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1106 -[UP] flip: 1323, stem: 27562, fault:1007. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1115 -[UP] flip: 5728, stem: 22882, fault:798. flip_cnt: 4, stem_cnt: 1426, fault_cnt:936 -[UP] flip: 6157, stem: 22202, fault:798. flip_cnt: 7, stem_cnt: 1426, fault_cnt:939 -[UP] flip: 4803, stem: 23022, fault:779. flip_cnt: 7, stem_cnt: 1426, fault_cnt:933 -[UP] flip: 4897, stem: 21801, fault:779. flip_cnt: 5, stem_cnt: 1427, fault_cnt:947 -[UP] flip: 0, stem: 20600, fault:779. flip_cnt: 0, stem_cnt: 1428, fault_cnt:946 -[UP] flip: 1838, stem: 21400, fault:779. flip_cnt: 2, stem_cnt: 1428, fault_cnt:945 -[UP] flip: 4323, stem: 21820, fault:779. flip_cnt: 5, stem_cnt: 1428, fault_cnt:943 -[UP] flip: 1851, stem: 22781, fault:779. flip_cnt: 2, stem_cnt: 1427, fault_cnt:939 -[UP] flip: 0, stem: 21860, fault:779. flip_cnt: 0, stem_cnt: 1428, fault_cnt:933 -[UP] flip: 0, stem: 22800, fault:779. flip_cnt: 0, stem_cnt: 1428, fault_cnt:933 -[UP] flip: 0, stem: 22519, fault:779. flip_cnt: 0, stem_cnt: 1429, fault_cnt:929 -[UP] flip: 1332, stem: 23079, fault:779. flip_cnt: 2, stem_cnt: 1429, fault_cnt:928 -[UP] flip: 3283, stem: 24261, fault:779. flip_cnt: 4, stem_cnt: 1427, fault_cnt:926 -[UP] flip: 0, stem: 24162, fault:798. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1071 -[UP] flip: 5902, stem: 23779, fault:798. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1074 -[UP] flip: 0, stem: 22398, fault:798. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1075 -[UP] flip: 5908, stem: 23398, fault:798. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1072 -[UP] flip: 0, stem: 24378, fault:798. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1072 -[UP] flip: 1777, stem: 21101, fault:703. flip_cnt: 2, stem_cnt: 1427, fault_cnt:1051 -[UP] flip: 0, stem: 22381, fault:703. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1051 -[UP] flip: 7901, stem: 23101, fault:684. flip_cnt: 7, stem_cnt: 1427, fault_cnt:1047 -[UP] flip: 0, stem: 24202, fault:684. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1047 -[UP] flip: 6445, stem: 24402, fault:684. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1048 -[UP] flip: 3378, stem: 25102, fault:779. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1129 -[UP] flip: 0, stem: 24541, fault:931. flip_cnt: 0, stem_cnt: 1427, fault_cnt:1270 -[UP] flip: 986, stem: 25342, fault:931. flip_cnt: 2, stem_cnt: 1426, fault_cnt:1269 -[UP] flip: 6367, stem: 26262, fault:931. flip_cnt: 7, stem_cnt: 1426, fault_cnt:1265 -[UP] flip: 0, stem: 26263, fault:931. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1265 -[UP] flip: 2029, stem: 25866, fault:836. flip_cnt: 3, stem_cnt: 1422, fault_cnt:1219 -[UP] flip: 1603, stem: 26606, fault:855. flip_cnt: 3, stem_cnt: 1422, fault_cnt:1222 -[UP] flip: 0, stem: 24865, fault:1121. flip_cnt: 0, stem_cnt: 1423, fault_cnt:1580 -[UP] flip: 954, stem: 25525, fault:1121. flip_cnt: 2, stem_cnt: 1423, fault_cnt:1600 -[UP] flip: 1519, stem: 26505, fault:1121. flip_cnt: 3, stem_cnt: 1423, fault_cnt:1599 -[UP] flip: 0, stem: 25503, fault:1216. flip_cnt: 0, stem_cnt: 1425, fault_cnt:1663 -[UP] flip: 4586, stem: 26043, fault:1216. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1661 -[UP] flip: 3705, stem: 26823, fault:1197. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1657 -[UP] flip: 0, stem: 27262, fault:1197. flip_cnt: 0, stem_cnt: 1426, fault_cnt:1657 -[UP] flip: 3308, stem: 27742, fault:1197. flip_cnt: 5, stem_cnt: 1426, fault_cnt:1654 -[UP] flip: 3203, stem: 28541, fault:1197. flip_cnt: 5, stem_cnt: 1427, fault_cnt:1630 -[UP] flip: 5034, stem: 28379, fault:1178. flip_cnt: 4, stem_cnt: 1429, fault_cnt:1583 -[UP] flip: 5365, stem: 28860, fault:1178. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1580 -[UP] flip: 0, stem: 29439, fault:1178. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1580 -[UP] flip: 2442, stem: 29977, fault:1178. flip_cnt: 3, stem_cnt: 1431, fault_cnt:1581 -[UP] flip: 6453, stem: 26257, fault:1178. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1592 -[UP] flip: 3809, stem: 25816, fault:1178. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1588 -[UP] flip: 0, stem: 26956, fault:1178. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1582 -[UP] flip: 5832, stem: 25016, fault:1159. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1579 -[UP] flip: 5413, stem: 25136, fault:1140. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1564 -[UP] flip: 1192, stem: 25255, fault:1140. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1565 -[UP] flip: 0, stem: 25376, fault:1235. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1660 -[UP] flip: 5147, stem: 26216, fault:1235. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1656 -[UP] flip: 1481, stem: 25996, fault:1235. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1649 -[UP] flip: 5867, stem: 26516, fault:1235. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1647 -[UP] flip: 3528, stem: 26434, fault:1235. flip_cnt: 4, stem_cnt: 1434, fault_cnt:1650 -[UP] flip: 1711, stem: 25494, fault:1235. flip_cnt: 3, stem_cnt: 1434, fault_cnt:1663 -[UP] flip: 0, stem: 26634, fault:1235. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1663 -[UP] flip: 0, stem: 26954, fault:1235. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1661 -[UP] flip: 0, stem: 25996, fault:1235. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1651 -[UP] flip: 3022, stem: 26836, fault:1235. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1649 -[UP] flip: 0, stem: 27715, fault:1235. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1663 -[UP] flip: 0, stem: 26936, fault:1178. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1632 -[UP] flip: 0, stem: 27836, fault:1178. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1632 -[UP] flip: 4069, stem: 27894, fault:1178. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1635 -[UP] flip: 4940, stem: 28652, fault:1178. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1639 -[UP] flip: 3584, stem: 28314, fault:1178. flip_cnt: 4, stem_cnt: 1434, fault_cnt:1635 -[UP] flip: 1908, stem: 29194, fault:1178. flip_cnt: 3, stem_cnt: 1434, fault_cnt:1636 -[UP] flip: 3170, stem: 25635, fault:1273. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1616 -[UP] flip: 3932, stem: 25634, fault:1273. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1612 -[UP] flip: 4929, stem: 23372, fault:1273. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1606 -[UP] flip: 0, stem: 21072, fault:1273. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1572 -[UP] flip: 2356, stem: 21952, fault:1273. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1570 -[UP] flip: 1434, stem: 22412, fault:1273. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1493 -[UP] flip: 3081, stem: 21752, fault:1273. flip_cnt: 3, stem_cnt: 1436, fault_cnt:1492 -[UP] flip: 0, stem: 22431, fault:1273. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1486 -[UP] flip: 5468, stem: 23151, fault:1292. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1510 -[UP] flip: 1466, stem: 24132, fault:1292. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1507 -[UP] flip: 1065, stem: 24773, fault:1292. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1504 -[UP] flip: 0, stem: 24652, fault:1292. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1502 -[UP] flip: 5180, stem: 24252, fault:1425. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1687 -[UP] flip: 3275, stem: 24792, fault:1349. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1658 -[UP] flip: 2491, stem: 24553, fault:1349. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1654 -[UP] flip: 5882, stem: 25113, fault:1349. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1650 -[UP] flip: 5094, stem: 15116, fault:1387. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1608 -[UP] flip: 0, stem: 16256, fault:1387. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1608 -[UP] flip: 0, stem: 15076, fault:1406. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1611 -[UP] flip: 4948, stem: 16116, fault:1387. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1607 -[UP] flip: 6170, stem: 16916, fault:1387. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1603 -[UP] flip: 6015, stem: 17174, fault:1387. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1604 -[UP] flip: 4904, stem: 18094, fault:1387. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1600 -[UP] flip: 5018, stem: 18772, fault:1387. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1604 -[UP] flip: 6003, stem: 19112, fault:1387. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1616 -[UP] flip: 0, stem: 17371, fault:1520. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1623 -[UP] flip: 0, stem: 18251, fault:1520. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1623 -[UP] flip: 1027, stem: 19492, fault:1520. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1620 -[UP] flip: 0, stem: 8734, fault:1501. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1576 -[UP] flip: 5481, stem: 9614, fault:1501. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1572 -[UP] flip: 5597, stem: 10355, fault:1501. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1564 -[UP] flip: 3572, stem: 11095, fault:1520. flip_cnt: 4, stem_cnt: 1433, fault_cnt:1571 -[UP] flip: 7893, stem: 11595, fault:1482. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1565 -[UP] flip: 7380, stem: 12915, fault:1425. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1539 -[UP] flip: 6061, stem: 13615, fault:1387. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1535 -[UP] flip: 2151, stem: 13834, fault:1273. flip_cnt: 4, stem_cnt: 1434, fault_cnt:1527 -[UP] flip: 4967, stem: 14973, fault:1273. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1523 -[UP] flip: 5613, stem: 16115, fault:1235. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1481 -[UP] flip: 1627, stem: 17136, fault:1235. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1479 -[UP] flip: 1562, stem: 17195, fault:1235. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1480 -[UP] flip: 3117, stem: 18096, fault:1273. flip_cnt: 4, stem_cnt: 1432, fault_cnt:1496 -[UP] flip: 1129, stem: 18417, fault:1273. flip_cnt: 2, stem_cnt: 1431, fault_cnt:1492 -[UP] flip: 5734, stem: 19637, fault:1235. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1488 -[UP] flip: 1714, stem: 20138, fault:1235. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1487 -[UP] flip: 3564, stem: 18959, fault:1235. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1485 -[UP] flip: 0, stem: 19439, fault:1235. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1488 -[UP] flip: 6272, stem: 20699, fault:1235. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1484 -[UP] flip: 5102, stem: 20519, fault:1235. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1480 -[UP] flip: 1627, stem: 16859, fault:1197. flip_cnt: 3, stem_cnt: 1429, fault_cnt:1472 -[UP] flip: 0, stem: 18019, fault:1197. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1472 -[UP] flip: 0, stem: 17679, fault:1197. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1472 -[UP] flip: 1513, stem: 17000, fault:1197. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1469 -[UP] flip: 2658, stem: 17720, fault:1178. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1466 -[UP] flip: 4778, stem: 18400, fault:1178. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1464 -[UP] flip: 0, stem: 12138, fault:855. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1119 -[UP] flip: 4596, stem: 13257, fault:855. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1119 -[UP] flip: 5942, stem: 14037, fault:855. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1117 -[UP] flip: 2900, stem: 11639, fault:893. flip_cnt: 5, stem_cnt: 1429, fault_cnt:1235 -[UP] flip: 1678, stem: 12779, fault:969. flip_cnt: 3, stem_cnt: 1429, fault_cnt:1407 -[UP] flip: 5105, stem: 12598, fault:969. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1383 -[UP] flip: 7677, stem: 12958, fault:969. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1367 -[UP] flip: 5892, stem: 13998, fault:969. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1363 -[UP] flip: 0, stem: 12897, fault:950. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1389 -[UP] flip: 0, stem: 13036, fault:950. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1389 -[UP] flip: 0, stem: 13598, fault:950. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1389 -[UP] flip: 0, stem: 14159, fault:950. flip_cnt: 0, stem_cnt: 1429, fault_cnt:1383 -[UP] flip: 1885, stem: 14520, fault:950. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1372 -[UP] flip: 5277, stem: 14498, fault:798. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1297 -[UP] flip: 2327, stem: 14918, fault:760. flip_cnt: 4, stem_cnt: 1430, fault_cnt:1223 -[UP] flip: 6140, stem: 15578, fault:760. flip_cnt: 5, stem_cnt: 1430, fault_cnt:1220 -[UP] flip: 0, stem: 16398, fault:760. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1220 -[UP] flip: 1646, stem: 17258, fault:836. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1284 -[UP] flip: 1556, stem: 18058, fault:836. flip_cnt: 2, stem_cnt: 1430, fault_cnt:1281 -[UP] flip: 3888, stem: 18016, fault:836. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1283 -[UP] flip: 2736, stem: 18093, fault:836. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1293 -[UP] flip: 2470, stem: 18993, fault:912. flip_cnt: 3, stem_cnt: 1435, fault_cnt:1454 -[UP] flip: 3011, stem: 19693, fault:912. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1451 -[UP] flip: 6522, stem: 19091, fault:931. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1443 -[UP] flip: 3948, stem: 19852, fault:931. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1440 -[UP] flip: 5196, stem: 20252, fault:893. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1436 -[UP] flip: 1944, stem: 20593, fault:893. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1433 -[UP] flip: 1126, stem: 21394, fault:893. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1430 -[UP] flip: 6166, stem: 21435, fault:874. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1422 -[UP] flip: 6149, stem: 22095, fault:874. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1420 -[UP] flip: 2929, stem: 22435, fault:874. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1416 -[UP] flip: 7353, stem: 18943, fault:760. flip_cnt: 7, stem_cnt: 1425, fault_cnt:1150 -[UP] flip: 6097, stem: 17319, fault:760. flip_cnt: 7, stem_cnt: 1429, fault_cnt:1149 -[UP] flip: 4286, stem: 17620, fault:760. flip_cnt: 5, stem_cnt: 1428, fault_cnt:1143 -[UP] flip: 0, stem: 18440, fault:760. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1141 -[UP] flip: 1205, stem: 19360, fault:760. flip_cnt: 2, stem_cnt: 1428, fault_cnt:1142 -[UP] flip: 2073, stem: 18384, fault:760. flip_cnt: 2, stem_cnt: 1424, fault_cnt:1157 -[UP] flip: 7661, stem: 18424, fault:722. flip_cnt: 7, stem_cnt: 1424, fault_cnt:1136 -[UP] flip: 5353, stem: 19065, fault:722. flip_cnt: 5, stem_cnt: 1423, fault_cnt:1129 -[UP] flip: 0, stem: 18349, fault:722. flip_cnt: 0, stem_cnt: 1419, fault_cnt:1119 -[UP] flip: 1430, stem: 19628, fault:722. flip_cnt: 2, stem_cnt: 1420, fault_cnt:1122 -[UP] flip: 6426, stem: 19789, fault:551. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1047 -[UP] flip: 3164, stem: 19389, fault:551. flip_cnt: 5, stem_cnt: 1419, fault_cnt:1043 -[UP] flip: 5066, stem: 20249, fault:532. flip_cnt: 7, stem_cnt: 1419, fault_cnt:1038 -[UP] flip: 0, stem: 19766, fault:437. flip_cnt: 0, stem_cnt: 1422, fault_cnt:894 -[UP] flip: 3702, stem: 20344, fault:437. flip_cnt: 5, stem_cnt: 1424, fault_cnt:897 -[UP] flip: 6240, stem: 21324, fault:437. flip_cnt: 5, stem_cnt: 1424, fault_cnt:899 -[UP] flip: 3412, stem: 16452, fault:437. flip_cnt: 4, stem_cnt: 1416, fault_cnt:843 -[UP] flip: 4965, stem: 17189, fault:437. flip_cnt: 5, stem_cnt: 1419, fault_cnt:826 -[UP] flip: 0, stem: 15323, fault:437. flip_cnt: 0, stem_cnt: 1425, fault_cnt:846 -[UP] flip: 0, stem: 16343, fault:437. flip_cnt: 0, stem_cnt: 1425, fault_cnt:846 -[UP] flip: 0, stem: 17063, fault:437. flip_cnt: 0, stem_cnt: 1425, fault_cnt:846 -[UP] flip: 1713, stem: 17843, fault:475. flip_cnt: 3, stem_cnt: 1425, fault_cnt:876 -[UP] flip: 0, stem: 18100, fault:475. flip_cnt: 0, stem_cnt: 1428, fault_cnt:876 -[UP] flip: 4989, stem: 18338, fault:475. flip_cnt: 5, stem_cnt: 1430, fault_cnt:878 -[UP] flip: 5607, stem: 18716, fault:475. flip_cnt: 5, stem_cnt: 1432, fault_cnt:920 -[UP] flip: 0, stem: 18637, fault:475. flip_cnt: 0, stem_cnt: 1431, fault_cnt:921 -[UP] flip: 3162, stem: 17658, fault:456. flip_cnt: 5, stem_cnt: 1430, fault_cnt:904 -[UP] flip: 4787, stem: 16637, fault:627. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1029 -[UP] flip: 0, stem: 15617, fault:855. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1080 -[UP] flip: 3120, stem: 14877, fault:855. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1078 -[UP] flip: 0, stem: 15535, fault:1064. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1395 -[UP] flip: 0, stem: 16255, fault:1064. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1395 -[UP] flip: 6880, stem: 15794, fault:1064. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1391 -[UP] flip: 5396, stem: 15334, fault:1064. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1387 -[UP] flip: 0, stem: 16113, fault:1064. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1385 -[UP] flip: 6195, stem: 16653, fault:1064. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1381 -[UP] flip: 0, stem: 17012, fault:1159. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1569 -[UP] flip: 1156, stem: 17831, fault:1159. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1572 -[UP] flip: 2187, stem: 18830, fault:1216. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1592 -[UP] flip: 0, stem: 17748, fault:1330. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1694 -[UP] flip: 0, stem: 17268, fault:1330. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1693 -[UP] flip: 0, stem: 12191, fault:1330. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1644 -[UP] flip: 6321, stem: 12290, fault:1330. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1640 -[UP] flip: 4012, stem: 12870, fault:1292. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1635 -[UP] flip: 3126, stem: 14010, fault:1273. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1623 -[UP] flip: 4422, stem: 14408, fault:1330. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1687 -[UP] flip: 0, stem: 15408, fault:1406. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1707 -[UP] flip: 5065, stem: 15208, fault:1406. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1704 -[UP] flip: 0, stem: 15447, fault:1406. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1702 -[UP] flip: 0, stem: 14784, fault:1406. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1717 -[UP] flip: 1282, stem: 15705, fault:1406. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1714 -[UP] flip: 4563, stem: 16103, fault:1406. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1716 -[UP] flip: 6907, stem: 17383, fault:1406. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1727 -[UP] flip: 3032, stem: 17463, fault:1406. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1725 -[UP] flip: 1276, stem: 17904, fault:1406. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1720 -[UP] flip: 5128, stem: 18804, fault:1406. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1718 -[UP] flip: 3539, stem: 19004, fault:1425. flip_cnt: 4, stem_cnt: 1444, fault_cnt:1716 -[UP] flip: 1460, stem: 19504, fault:1463. flip_cnt: 3, stem_cnt: 1444, fault_cnt:1721 -[UP] flip: 3760, stem: 18884, fault:1463. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1717 -[UP] flip: 4600, stem: 19624, fault:1463. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1713 -[UP] flip: 6292, stem: 19606, fault:1463. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1708 -[UP] flip: 3645, stem: 19347, fault:1463. flip_cnt: 4, stem_cnt: 1441, fault_cnt:1706 -[UP] flip: 0, stem: 19828, fault:1463. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1706 -[UP] flip: 1685, stem: 19189, fault:1463. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1704 -[UP] flip: 4528, stem: 19409, fault:1463. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1720 -[UP] flip: 0, stem: 19929, fault:1463. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1779 -[UP] flip: 5329, stem: 20889, fault:1463. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1775 -[UP] flip: 2088, stem: 20069, fault:1463. flip_cnt: 3, stem_cnt: 1439, fault_cnt:1776 -[UP] flip: 0, stem: 20469, fault:1463. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1776 -[UP] flip: 2809, stem: 21249, fault:1482. flip_cnt: 4, stem_cnt: 1439, fault_cnt:1774 -[UP] flip: 3128, stem: 9267, fault:1520. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1735 -[UP] flip: 5930, stem: 10307, fault:1520. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1731 -[UP] flip: 6252, stem: 10986, fault:1501. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1727 -[UP] flip: 6406, stem: 11026, fault:1444. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1714 -[UP] flip: 2621, stem: 11726, fault:1444. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1711 -[UP] flip: 0, stem: 12486, fault:1444. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1708 -[UP] flip: 0, stem: 13726, fault:1444. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1708 -[UP] flip: 2078, stem: 13666, fault:1444. flip_cnt: 3, stem_cnt: 1442, fault_cnt:1705 -[UP] flip: 5106, stem: 13967, fault:1444. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1701 -[UP] flip: 6544, stem: 14027, fault:1482. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1689 -[UP] flip: 2507, stem: 14607, fault:1482. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1680 -[UP] flip: 3480, stem: 16228, fault:1482. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1678 -[UP] flip: 0, stem: 17728, fault:1463. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1672 -[UP] flip: 1663, stem: 17609, fault:1463. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1664 -[UP] flip: 7244, stem: 18329, fault:1463. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1662 -[UP] flip: 0, stem: 19009, fault:1463. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1662 -[UP] flip: 5673, stem: 19469, fault:1444. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1659 -[UP] flip: 0, stem: 20550, fault:1444. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1659 -[UP] flip: 5816, stem: 20970, fault:1444. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1657 -[UP] flip: 3931, stem: 22131, fault:1444. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1655 -[UP] flip: 5509, stem: 23171, fault:1444. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1656 -[UP] flip: 0, stem: 18150, fault:1539. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1655 -[UP] flip: 4777, stem: 17910, fault:1539. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1651 -[UP] flip: 3112, stem: 17968, fault:1520. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1608 -[UP] flip: 5031, stem: 18528, fault:1539. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1656 -[UP] flip: 4217, stem: 18087, fault:1539. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1631 -[UP] flip: 0, stem: 18787, fault:1539. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1628 -[UP] flip: 6639, stem: 18987, fault:1539. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1629 -[UP] flip: 0, stem: 18667, fault:1539. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1692 -[UP] flip: 1502, stem: 19846, fault:1539. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1693 -[UP] flip: 0, stem: 20287, fault:1539. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1728 -[UP] flip: 4269, stem: 19648, fault:1539. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1726 -[UP] flip: 6099, stem: 20308, fault:1520. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1680 -[UP] flip: 0, stem: 20088, fault:1520. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1685 -[UP] flip: 0, stem: 19966, fault:1520. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1685 -[UP] flip: 6173, stem: 19944, fault:1520. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1681 -[UP] flip: 6403, stem: 19785, fault:1520. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1675 -[UP] flip: 2110, stem: 20786, fault:1520. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1672 -[UP] flip: 5416, stem: 21206, fault:1520. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1668 -[UP] flip: 1763, stem: 20686, fault:1520. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1667 -[UP] flip: 3444, stem: 20687, fault:1501. flip_cnt: 4, stem_cnt: 1441, fault_cnt:1655 -[UP] flip: 0, stem: 21588, fault:1501. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1654 -[UP] flip: 0, stem: 21987, fault:1501. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1654 -[UP] flip: 5131, stem: 23047, fault:1501. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1650 -[UP] flip: 0, stem: 23567, fault:1501. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1650 -[UP] flip: 7268, stem: 22403, fault:1501. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1645 -[UP] flip: 1718, stem: 22524, fault:1501. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1642 -[UP] flip: 2009, stem: 21745, fault:1501. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1639 -[UP] flip: 1565, stem: 21045, fault:1501. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1636 -[UP] flip: 5595, stem: 20264, fault:1501. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1645 -[UP] flip: 6443, stem: 20624, fault:1501. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1641 -[UP] flip: 0, stem: 20184, fault:1501. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1639 -[UP] flip: 7298, stem: 20944, fault:1501. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1635 -[UP] flip: 1182, stem: 21345, fault:1539. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1669 -[UP] flip: 0, stem: 21305, fault:1539. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1669 -[UP] flip: 1596, stem: 21645, fault:1539. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1666 -[UP] flip: 3464, stem: 21163, fault:1539. flip_cnt: 4, stem_cnt: 1445, fault_cnt:1669 -[UP] flip: 4243, stem: 21803, fault:1596. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1770 -[UP] flip: 3334, stem: 21963, fault:1596. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1768 -[UP] flip: 5678, stem: 21124, fault:1539. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1718 -[UP] flip: 1793, stem: 16602, fault:1596. flip_cnt: 2, stem_cnt: 1446, fault_cnt:1756 -[UP] flip: 0, stem: 17261, fault:1596. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1768 -[UP] flip: 2083, stem: 18021, fault:1596. flip_cnt: 3, stem_cnt: 1447, fault_cnt:1765 -[UP] flip: 5129, stem: 18441, fault:1596. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1761 -[UP] flip: 1178, stem: 18881, fault:1596. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1751 -[UP] flip: 3989, stem: 18561, fault:1615. flip_cnt: 4, stem_cnt: 1447, fault_cnt:1749 -[UP] flip: 1340, stem: 17061, fault:1615. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1772 -[UP] flip: 6421, stem: 17381, fault:1596. flip_cnt: 7, stem_cnt: 1447, fault_cnt:1768 -[UP] flip: 2167, stem: 18322, fault:1577. flip_cnt: 2, stem_cnt: 1446, fault_cnt:1765 -[UP] flip: 5930, stem: 18762, fault:1577. flip_cnt: 7, stem_cnt: 1446, fault_cnt:1761 -[UP] flip: 3248, stem: 18101, fault:1387. flip_cnt: 4, stem_cnt: 1447, fault_cnt:1553 -[UP] flip: 2519, stem: 18601, fault:1406. flip_cnt: 4, stem_cnt: 1447, fault_cnt:1547 -[UP] flip: 2713, stem: 17264, fault:1444. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1561 -[UP] flip: 4121, stem: 15924, fault:1425. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1557 -[UP] flip: 1020, stem: 16730, fault:1387. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1564 -[UP] flip: 2314, stem: 16888, fault:1406. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1564 -[UP] flip: 0, stem: 16848, fault:1406. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1601 -[UP] flip: 0, stem: 17909, fault:1406. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1605 -[UP] flip: 3276, stem: 17726, fault:1425. flip_cnt: 4, stem_cnt: 1442, fault_cnt:1608 -[UP] flip: 5074, stem: 18626, fault:1425. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1624 -[UP] flip: 6774, stem: 16307, fault:1387. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1621 -[UP] flip: 5795, stem: 17008, fault:1387. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1611 -[UP] flip: 2965, stem: 17528, fault:1387. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1608 -[UP] flip: 0, stem: 17806, fault:1387. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1608 -[UP] flip: 0, stem: 18486, fault:1387. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1608 -[UP] flip: 1724, stem: 19266, fault:1387. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1607 -[UP] flip: 5377, stem: 19765, fault:1387. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1603 -[UP] flip: 6814, stem: 20065, fault:1387. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1599 -[UP] flip: 0, stem: 20585, fault:1387. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1599 -[UP] flip: 1873, stem: 20106, fault:1387. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1593 -[UP] flip: 0, stem: 20766, fault:1387. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1593 -[UP] flip: 0, stem: 21087, fault:1387. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1593 -[UP] flip: 2398, stem: 21047, fault:1387. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1590 -[UP] flip: 2130, stem: 18287, fault:1387. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1593 -[UP] flip: 5008, stem: 16045, fault:1387. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1663 -[UP] flip: 6314, stem: 16705, fault:1387. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1648 -[UP] flip: 5380, stem: 15825, fault:1387. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1646 -[UP] flip: 6386, stem: 17025, fault:1387. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1644 -[UP] flip: 744, stem: 18004, fault:1387. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1643 -[UP] flip: 0, stem: 18544, fault:1387. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1643 -[UP] flip: 0, stem: 18842, fault:1387. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1643 -[UP] flip: 2178, stem: 20463, fault:1387. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1640 -[UP] flip: 3261, stem: 20723, fault:1387. flip_cnt: 4, stem_cnt: 1445, fault_cnt:1638 -[UP] flip: 5483, stem: 20783, fault:1387. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1636 -[UP] flip: 2846, stem: 20703, fault:1387. flip_cnt: 3, stem_cnt: 1445, fault_cnt:1635 -[UP] flip: 1236, stem: 21223, fault:1387. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1636 -[UP] flip: 0, stem: 19983, fault:1387. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1640 -[UP] flip: 5000, stem: 20803, fault:1387. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1638 -[UP] flip: 5822, stem: 19204, fault:1330. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1623 -[UP] flip: 4085, stem: 17365, fault:1330. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1618 -[UP] flip: 5048, stem: 18466, fault:1349. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1613 -[UP] flip: 0, stem: 18767, fault:1254. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1584 -[UP] flip: 1041, stem: 19608, fault:1254. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1583 -[UP] flip: 1233, stem: 20528, fault:1254. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1580 -[UP] flip: 925, stem: 21129, fault:1254. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1577 -[UP] flip: 0, stem: 22309, fault:1254. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1577 -[UP] flip: 3854, stem: 22069, fault:1254. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1576 -[UP] flip: 0, stem: 22870, fault:1254. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1576 -[UP] flip: 2880, stem: 18828, fault:1387. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1600 -[UP] flip: 1238, stem: 18810, fault:1387. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1597 -[UP] flip: 4281, stem: 19430, fault:1387. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1593 -[UP] flip: 2400, stem: 19791, fault:1387. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1586 -[UP] flip: 3907, stem: 19952, fault:1387. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1583 -[UP] flip: 0, stem: 20892, fault:1254. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1564 -[UP] flip: 0, stem: 20954, fault:1254. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1557 -[UP] flip: 0, stem: 22114, fault:1254. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1557 -[UP] flip: 6909, stem: 20972, fault:1254. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1555 -[UP] flip: 0, stem: 21733, fault:1254. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1555 -[UP] flip: 0, stem: 22173, fault:1254. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1555 -[UP] flip: 3512, stem: 19031, fault:1026. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1406 -[UP] flip: 4434, stem: 19911, fault:1026. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1408 -[UP] flip: 0, stem: 20672, fault:1026. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1407 -[UP] flip: 3001, stem: 21232, fault:1026. flip_cnt: 3, stem_cnt: 1436, fault_cnt:1406 -[UP] flip: 5295, stem: 21151, fault:1026. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1402 -[UP] flip: 3123, stem: 21791, fault:1026. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1400 -[UP] flip: 0, stem: 22651, fault:969. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1393 -[UP] flip: 4026, stem: 23291, fault:969. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1394 -[UP] flip: 0, stem: 23129, fault:969. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1394 -[UP] flip: 6610, stem: 23709, fault:969. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1390 -[UP] flip: 2603, stem: 22749, fault:969. flip_cnt: 4, stem_cnt: 1439, fault_cnt:1388 -[UP] flip: 0, stem: 23090, fault:1273. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1554 -[UP] flip: 2800, stem: 23010, fault:1273. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1552 -[UP] flip: 0, stem: 21911, fault:1292. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1548 -[UP] flip: 6381, stem: 21350, fault:1292. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1549 -[UP] flip: 0, stem: 21850, fault:1368. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1590 -[UP] flip: 6532, stem: 21691, fault:1349. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1583 -[UP] flip: 6186, stem: 22371, fault:1349. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1581 -[UP] flip: 0, stem: 23132, fault:1349. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1581 -[UP] flip: 5358, stem: 22909, fault:1349. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1583 -[UP] flip: 0, stem: 23790, fault:1368. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1596 -[UP] flip: 1181, stem: 23250, fault:1368. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1593 -[UP] flip: 5896, stem: 22466, fault:1368. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1591 -[UP] flip: 6725, stem: 21705, fault:1007. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1227 -[UP] flip: 3508, stem: 22104, fault:988. flip_cnt: 4, stem_cnt: 1444, fault_cnt:1204 -[UP] flip: 0, stem: 22844, fault:988. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1211 -[UP] flip: 2065, stem: 19047, fault:988. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1198 -[UP] flip: 3601, stem: 18728, fault:988. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1196 -[UP] flip: 0, stem: 17908, fault:931. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1182 -[UP] flip: 2197, stem: 17209, fault:1159. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1227 -[UP] flip: 0, stem: 17068, fault:1159. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1227 -[UP] flip: 5041, stem: 16906, fault:1159. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1229 -[UP] flip: 0, stem: 12073, fault:1197. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1369 -[UP] flip: 0, stem: 12633, fault:1197. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1369 -[UP] flip: 5026, stem: 13193, fault:1197. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1364 -[UP] flip: 0, stem: 14253, fault:1197. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1364 -[UP] flip: 4200, stem: 14953, fault:1197. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1362 -[UP] flip: 6962, stem: 11551, fault:1273. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1385 -[UP] flip: 0, stem: 12411, fault:1273. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1385 -[UP] flip: 8221, stem: 14031, fault:1254. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1381 -[UP] flip: 7170, stem: 14731, fault:1254. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1377 -[UP] flip: 2028, stem: 14949, fault:1254. flip_cnt: 3, stem_cnt: 1439, fault_cnt:1376 -[UP] flip: 3744, stem: 15471, fault:1197. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1363 -[UP] flip: 0, stem: 16191, fault:1197. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1363 -[UP] flip: 6310, stem: 16651, fault:1197. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1359 -[UP] flip: 6763, stem: 16831, fault:1159. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1355 -[UP] flip: 6898, stem: 16812, fault:1159. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1352 -[UP] flip: 3850, stem: 15853, fault:1159. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1355 -[UP] flip: 6737, stem: 16673, fault:1159. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1375 -[UP] flip: 3192, stem: 17473, fault:1159. flip_cnt: 3, stem_cnt: 1435, fault_cnt:1374 -[UP] flip: 0, stem: 14729, fault:1159. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1392 -[UP] flip: 1143, stem: 15270, fault:1159. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1391 -[UP] flip: 0, stem: 16230, fault:1159. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1391 -[UP] flip: 4171, stem: 16591, fault:1159. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1392 -[UP] flip: 3699, stem: 17371, fault:1083. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1383 -[UP] flip: 2830, stem: 17811, fault:1045. flip_cnt: 3, stem_cnt: 1437, fault_cnt:1231 -[UP] flip: 4039, stem: 18148, fault:1045. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1232 -[UP] flip: 1265, stem: 18508, fault:1045. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1241 -[UP] flip: 1884, stem: 18666, fault:1045. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1238 -[UP] flip: 7378, stem: 18826, fault:1045. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1236 -[UP] flip: 3342, stem: 16367, fault:1045. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1239 -[UP] flip: 5898, stem: 16887, fault:1045. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1235 -[UP] flip: 6345, stem: 17827, fault:1007. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1231 -[UP] flip: 0, stem: 17469, fault:1007. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1228 -[UP] flip: 3459, stem: 17429, fault:1007. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1225 -[UP] flip: 0, stem: 16968, fault:1311. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1475 -[UP] flip: 0, stem: 17048, fault:1311. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1475 -[UP] flip: 0, stem: 17728, fault:1311. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1475 -[UP] flip: 5779, stem: 18108, fault:1311. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1473 -[UP] flip: 0, stem: 17908, fault:1311. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1469 -[UP] flip: 3351, stem: 13630, fault:1330. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1585 -[UP] flip: 4403, stem: 14090, fault:1311. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1583 -[UP] flip: 4788, stem: 15650, fault:1273. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1449 -[UP] flip: 5402, stem: 16470, fault:1273. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1439 -[UP] flip: 0, stem: 16710, fault:1273. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1437 -[UP] flip: 1667, stem: 17170, fault:1273. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1436 -[UP] flip: 4197, stem: 17388, fault:1273. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1438 -[UP] flip: 1255, stem: 17770, fault:1273. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1451 -[UP] flip: 3008, stem: 17667, fault:1273. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1455 -[UP] flip: 1564, stem: 17788, fault:1501. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1616 -[UP] flip: 2394, stem: 19789, fault:1501. flip_cnt: 3, stem_cnt: 1439, fault_cnt:1615 -[UP] flip: 2257, stem: 21049, fault:1501. flip_cnt: 3, stem_cnt: 1439, fault_cnt:1612 -[UP] flip: 2169, stem: 21490, fault:1501. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1609 -[UP] flip: 9166, stem: 23029, fault:1501. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1605 -[UP] flip: 7056, stem: 24349, fault:1501. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1603 -[UP] flip: 0, stem: 23789, fault:1558. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1620 -[UP] flip: 3426, stem: 23309, fault:1558. flip_cnt: 4, stem_cnt: 1439, fault_cnt:1618 -[UP] flip: 7256, stem: 20809, fault:1330. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1453 -[UP] flip: 0, stem: 20729, fault:1330. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1446 -[UP] flip: 0, stem: 17654, fault:1159. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1273 -[UP] flip: 3596, stem: 14753, fault:1463. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1428 -[UP] flip: 6505, stem: 16235, fault:1463. flip_cnt: 7, stem_cnt: 1433, fault_cnt:1422 -[UP] flip: 6375, stem: 16032, fault:1444. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1409 -[UP] flip: 1876, stem: 16192, fault:1444. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1406 -[UP] flip: 0, stem: 17092, fault:1444. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1406 -[UP] flip: 8542, stem: 18052, fault:1425. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1402 -[UP] flip: 2927, stem: 19111, fault:1425. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1401 -[UP] flip: 1583, stem: 19912, fault:1425. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1399 -[UP] flip: 1472, stem: 21013, fault:1425. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1398 -[UP] flip: 1271, stem: 21414, fault:1425. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1397 -[UP] flip: 3805, stem: 21854, fault:1425. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1395 -[UP] flip: 4059, stem: 22394, fault:1425. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1390 -[UP] flip: 5362, stem: 21994, fault:1425. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1387 -[UP] flip: 6003, stem: 22453, fault:1558. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1500 -[UP] flip: 0, stem: 22973, fault:1558. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1500 -[UP] flip: 6870, stem: 23473, fault:1558. flip_cnt: 7, stem_cnt: 1435, fault_cnt:1496 -[UP] flip: 2667, stem: 24313, fault:1558. flip_cnt: 3, stem_cnt: 1435, fault_cnt:1495 -[UP] flip: 0, stem: 25113, fault:1558. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1495 -[UP] flip: 0, stem: 22393, fault:1577. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1492 -[UP] flip: 4567, stem: 21071, fault:1539. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1485 -[UP] flip: 5331, stem: 22231, fault:1539. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1468 -[UP] flip: 6369, stem: 20230, fault:1539. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1465 -[UP] flip: 1295, stem: 20708, fault:1539. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1482 -[UP] flip: 0, stem: 21129, fault:1539. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1482 -[UP] flip: 3967, stem: 20929, fault:1539. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1480 -[UP] flip: 0, stem: 18525, fault:1501. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1480 -[UP] flip: 1802, stem: 19686, fault:1501. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1477 -[UP] flip: 2409, stem: 19207, fault:1501. flip_cnt: 4, stem_cnt: 1441, fault_cnt:1475 -[UP] flip: 2626, stem: 19327, fault:1539. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1502 -[UP] flip: 1449, stem: 19607, fault:1539. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1501 -[UP] flip: 3414, stem: 19888, fault:1539. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1493 -[UP] flip: 0, stem: 19350, fault:1425. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1395 -[UP] flip: 1341, stem: 19991, fault:1425. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1392 -[UP] flip: 7074, stem: 15331, fault:1292. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1394 -[UP] flip: 5208, stem: 15792, fault:1292. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1393 -[UP] flip: 9311, stem: 16052, fault:1273. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1389 -[UP] flip: 3324, stem: 16191, fault:1273. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1393 -[UP] flip: 0, stem: 17251, fault:1292. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1401 -[UP] flip: 3660, stem: 17971, fault:1292. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1397 -[UP] flip: 7879, stem: 18392, fault:1292. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1386 -[UP] flip: 7466, stem: 20752, fault:1292. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1382 -[UP] flip: 0, stem: 21612, fault:1292. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1382 -[UP] flip: 3836, stem: 22252, fault:1311. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1380 -[UP] flip: 0, stem: 21831, fault:1463. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1414 -[UP] flip: 0, stem: 22312, fault:1463. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1414 -[UP] flip: 5599, stem: 23192, fault:1463. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1410 -[UP] flip: 0, stem: 23953, fault:1463. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1411 -[UP] flip: 0, stem: 23493, fault:1463. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1411 -[UP] flip: 0, stem: 23612, fault:1463. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1411 -[UP] flip: 1829, stem: 23873, fault:1406. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1408 -[UP] flip: 6999, stem: 24733, fault:1406. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1404 -[UP] flip: 1739, stem: 24453, fault:1406. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1403 -[UP] flip: 0, stem: 15298, fault:1121. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1289 -[UP] flip: 1372, stem: 16299, fault:1102. flip_cnt: 2, stem_cnt: 1429, fault_cnt:1286 -[UP] flip: 0, stem: 16317, fault:1102. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1286 -[UP] flip: 9048, stem: 16878, fault:1083. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1272 -[UP] flip: 0, stem: 18278, fault:1083. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1272 -[UP] flip: 0, stem: 18937, fault:1083. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1272 -[UP] flip: 0, stem: 15315, fault:1121. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1267 -[UP] flip: 0, stem: 16075, fault:1121. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1267 -[UP] flip: 4126, stem: 16093, fault:1121. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1280 -[UP] flip: 4283, stem: 10270, fault:1121. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1304 -[UP] flip: 1540, stem: 11391, fault:1102. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1301 -[UP] flip: 0, stem: 11649, fault:1102. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1301 -[UP] flip: 4174, stem: 12067, fault:1121. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1304 -[UP] flip: 6494, stem: 12087, fault:1539. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1557 -[UP] flip: 0, stem: 12687, fault:1539. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1555 -[UP] flip: 4238, stem: 13407, fault:1539. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1553 -[UP] flip: 0, stem: 14047, fault:1539. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1553 -[UP] flip: 0, stem: 14129, fault:1539. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1553 -[UP] flip: 4540, stem: 13389, fault:1577. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1561 -[UP] flip: 3613, stem: 14029, fault:1558. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1539 -[UP] flip: 1546, stem: 14468, fault:1558. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1524 -[UP] flip: 0, stem: 14272, fault:1520. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1515 -[UP] flip: 0, stem: 14631, fault:1520. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1517 -[UP] flip: 5857, stem: 15251, fault:1520. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1513 -[UP] flip: 2219, stem: 15992, fault:1425. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1495 -[UP] flip: 0, stem: 17292, fault:1425. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1495 -[UP] flip: 6890, stem: 18232, fault:1425. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1491 -[UP] flip: 1644, stem: 12164, fault:1444. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1535 -[UP] flip: 0, stem: 11844, fault:1444. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1558 -[UP] flip: 1294, stem: 12204, fault:1444. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1555 -[UP] flip: 1919, stem: 12265, fault:1444. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1551 -[UP] flip: 0, stem: 12705, fault:1444. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1551 -[UP] flip: 1416, stem: 13128, fault:1444. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1541 -[UP] flip: 0, stem: 13328, fault:1444. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1541 -[UP] flip: 3049, stem: 14026, fault:1444. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1544 -[UP] flip: 3702, stem: 13066, fault:1349. flip_cnt: 4, stem_cnt: 1442, fault_cnt:1424 -[UP] flip: 5268, stem: 13566, fault:1349. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1422 -[UP] flip: 0, stem: 12766, fault:1349. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1403 -[UP] flip: 7216, stem: 13426, fault:1330. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1400 -[UP] flip: 0, stem: 13243, fault:1292. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1393 -[UP] flip: 1652, stem: 13724, fault:1292. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1390 -[UP] flip: 0, stem: 14344, fault:1330. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1403 -[UP] flip: 3150, stem: 15524, fault:1330. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1401 -[UP] flip: 6534, stem: 14865, fault:1330. flip_cnt: 4, stem_cnt: 1443, fault_cnt:1403 -[UP] flip: 5785, stem: 14343, fault:1330. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1399 -[UP] flip: 7925, stem: 15043, fault:1292. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1364 -[UP] flip: 0, stem: 15524, fault:1292. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1364 -[UP] flip: 3758, stem: 16044, fault:1292. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1362 -[UP] flip: 1175, stem: 15925, fault:1292. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1347 -[UP] flip: 7629, stem: 16065, fault:1292. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1345 -[UP] flip: 0, stem: 16764, fault:1292. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1345 -[UP] flip: 0, stem: 16503, fault:1292. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1372 -[UP] flip: 0, stem: 16963, fault:1292. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1372 -[UP] flip: 4343, stem: 16744, fault:1292. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1371 -[UP] flip: 6127, stem: 13852, fault:1273. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1337 -[UP] flip: 0, stem: 14732, fault:1273. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1333 -[UP] flip: 2097, stem: 15012, fault:1273. flip_cnt: 3, stem_cnt: 1436, fault_cnt:1332 -[UP] flip: 0, stem: 16132, fault:1273. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1332 -[UP] flip: 5854, stem: 12277, fault:1273. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1285 -[UP] flip: 0, stem: 12032, fault:1273. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1299 -[UP] flip: 0, stem: 12893, fault:1273. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1299 -[UP] flip: 0, stem: 14174, fault:1273. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1299 -[UP] flip: 6236, stem: 14354, fault:1273. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1295 -[UP] flip: 0, stem: 15274, fault:1273. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1295 -[UP] flip: 4381, stem: 14957, fault:1311. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1308 -[UP] flip: 0, stem: 15677, fault:1235. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1301 -[UP] flip: 0, stem: 16777, fault:1235. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1301 -[UP] flip: 0, stem: 16897, fault:1235. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1301 -[UP] flip: 6916, stem: 9312, fault:1235. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1298 -[UP] flip: 0, stem: 10512, fault:1235. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1298 -[UP] flip: 0, stem: 11192, fault:1235. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1298 -[UP] flip: 6742, stem: 10591, fault:1406. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1597 -[UP] flip: 1046, stem: 10811, fault:1406. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1598 -[UP] flip: 5282, stem: 10551, fault:1482. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1666 -[UP] flip: 1724, stem: 10711, fault:1520. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1678 -[UP] flip: 8138, stem: 11491, fault:1520. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1673 -[UP] flip: 3556, stem: 12130, fault:1520. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1676 -[UP] flip: 4291, stem: 12270, fault:1520. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1681 -[UP] flip: 1535, stem: 12730, fault:1520. flip_cnt: 2, stem_cnt: 1438, fault_cnt:1676 -[UP] flip: 0, stem: 13430, fault:1520. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1676 -[UP] flip: 4498, stem: 13451, fault:1520. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1674 -[UP] flip: 2548, stem: 13330, fault:1501. flip_cnt: 4, stem_cnt: 1438, fault_cnt:1656 -[UP] flip: 7974, stem: 12950, fault:1501. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1673 -[UP] flip: 0, stem: 13090, fault:1216. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1284 -[UP] flip: 2451, stem: 14011, fault:1216. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1281 -[UP] flip: 4309, stem: 13429, fault:1216. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1281 -[UP] flip: 0, stem: 13989, fault:1216. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1281 -[UP] flip: 0, stem: 14829, fault:1216. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1287 -[UP] flip: 0, stem: 15829, fault:1216. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1287 -[UP] flip: 4636, stem: 13706, fault:1197. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1293 -[UP] flip: 0, stem: 13607, fault:1197. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1293 -[UP] flip: 2174, stem: 14367, fault:1197. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1292 -[UP] flip: 0, stem: 15107, fault:1197. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1292 -[UP] flip: 9958, stem: 16087, fault:1197. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1288 -[UP] flip: 3913, stem: 15308, fault:1197. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1286 -[UP] flip: 2276, stem: 13369, fault:1178. flip_cnt: 3, stem_cnt: 1439, fault_cnt:1237 -[UP] flip: 5158, stem: 15489, fault:1178. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1234 -[UP] flip: 2174, stem: 13893, fault:1178. flip_cnt: 3, stem_cnt: 1435, fault_cnt:1233 -[UP] flip: 0, stem: 14594, fault:1178. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1233 -[UP] flip: 0, stem: 15374, fault:1178. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1233 -[UP] flip: 5840, stem: 15794, fault:1178. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1231 -[UP] flip: 6341, stem: 16154, fault:1178. flip_cnt: 7, stem_cnt: 1434, fault_cnt:1227 -[UP] flip: 0, stem: 16834, fault:1178. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1221 -[UP] flip: 0, stem: 17474, fault:1178. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1221 -[UP] flip: 0, stem: 17014, fault:1178. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1218 -[UP] flip: 2265, stem: 17275, fault:1159. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1215 -[UP] flip: 1905, stem: 16856, fault:1159. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1214 -[UP] flip: 0, stem: 15238, fault:1159. flip_cnt: 0, stem_cnt: 1430, fault_cnt:1211 -[UP] flip: 0, stem: 15395, fault:1159. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1211 -[UP] flip: 1496, stem: 16034, fault:1159. flip_cnt: 2, stem_cnt: 1434, fault_cnt:1210 -[UP] flip: 4250, stem: 16313, fault:1159. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1213 -[UP] flip: 0, stem: 16054, fault:1197. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1226 -[UP] flip: 0, stem: 15792, fault:1197. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1226 -[UP] flip: 6306, stem: 16951, fault:1197. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1229 -[UP] flip: 1968, stem: 17271, fault:1197. flip_cnt: 3, stem_cnt: 1437, fault_cnt:1229 -[UP] flip: 0, stem: 17890, fault:1197. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1229 -[UP] flip: 2741, stem: 17652, fault:1197. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1227 -[UP] flip: 5380, stem: 11685, fault:1273. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1349 -[UP] flip: 1898, stem: 11967, fault:1273. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1340 -[UP] flip: 2723, stem: 12967, fault:1273. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1337 -[UP] flip: 0, stem: 13367, fault:1273. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1337 -[UP] flip: 3979, stem: 14009, fault:1273. flip_cnt: 4, stem_cnt: 1439, fault_cnt:1335 -[UP] flip: 7266, stem: 11667, fault:1273. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1349 -[UP] flip: 5868, stem: 12186, fault:1273. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1350 -[UP] flip: 7545, stem: 13308, fault:1273. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1350 -[UP] flip: 6519, stem: 13006, fault:1311. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1349 -[UP] flip: 2539, stem: 13667, fault:1330. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1352 -[UP] flip: 5386, stem: 15007, fault:1330. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1350 -[UP] flip: 1609, stem: 14769, fault:1330. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1347 -[UP] flip: 1896, stem: 15409, fault:1330. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1346 -[UP] flip: 6427, stem: 15909, fault:1330. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1340 -[UP] flip: 0, stem: 13028, fault:1330. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1342 -[UP] flip: 0, stem: 14069, fault:1330. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1342 -[UP] flip: 0, stem: 12590, fault:1330. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1339 -[UP] flip: 2662, stem: 11767, fault:1330. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1335 -[UP] flip: 2114, stem: 12387, fault:1330. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1334 -[UP] flip: 8288, stem: 11162, fault:1330. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1320 -[UP] flip: 5857, stem: 10902, fault:1330. flip_cnt: 7, stem_cnt: 1446, fault_cnt:1316 -[UP] flip: 3946, stem: 10501, fault:1368. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1319 -[UP] flip: 6681, stem: 10044, fault:1615. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1672 -[UP] flip: 5222, stem: 8240, fault:1558. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1660 -[UP] flip: 3999, stem: 9461, fault:1558. flip_cnt: 4, stem_cnt: 1447, fault_cnt:1664 -[UP] flip: 1056, stem: 11003, fault:1558. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1663 -[UP] flip: 7305, stem: 11383, fault:1558. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1658 -[UP] flip: 6406, stem: 11943, fault:1558. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1656 -[UP] flip: 8081, stem: 12003, fault:1558. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1659 -[UP] flip: 7459, stem: 12543, fault:1558. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1655 -[UP] flip: 4434, stem: 13243, fault:1558. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1651 -[UP] flip: 0, stem: 13983, fault:1558. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1589 -[UP] flip: 1996, stem: 13483, fault:1558. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1586 -[UP] flip: 5673, stem: 12500, fault:1653. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1609 -[UP] flip: 3021, stem: 13543, fault:1634. flip_cnt: 3, stem_cnt: 1445, fault_cnt:1590 -[UP] flip: 7293, stem: 13221, fault:1634. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1588 -[UP] flip: 4491, stem: 13401, fault:1634. flip_cnt: 2, stem_cnt: 1447, fault_cnt:1587 -[UP] flip: 2626, stem: 13642, fault:1634. flip_cnt: 4, stem_cnt: 1446, fault_cnt:1585 -[UP] flip: 2850, stem: 13122, fault:1672. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1710 -[UP] flip: 2742, stem: 13342, fault:1672. flip_cnt: 3, stem_cnt: 1446, fault_cnt:1707 -[UP] flip: 0, stem: 13622, fault:1672. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1707 -[UP] flip: 5245, stem: 14902, fault:1672. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1705 -[UP] flip: 5438, stem: 15442, fault:1672. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1697 -[UP] flip: 5582, stem: 16722, fault:1672. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1692 -[UP] flip: 0, stem: 17142, fault:1672. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1692 -[UP] flip: 7701, stem: 17002, fault:1672. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1690 -[UP] flip: 4034, stem: 17283, fault:1672. flip_cnt: 4, stem_cnt: 1445, fault_cnt:1688 -[UP] flip: 5927, stem: 17083, fault:1710. flip_cnt: 7, stem_cnt: 1445, fault_cnt:1707 -[UP] flip: 2274, stem: 16566, fault:1710. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1704 -[UP] flip: 5438, stem: 14666, fault:1672. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1676 -[UP] flip: 1062, stem: 15766, fault:1672. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1677 -[UP] flip: 7160, stem: 16206, fault:1653. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1691 -[UP] flip: 2595, stem: 16506, fault:1653. flip_cnt: 3, stem_cnt: 1442, fault_cnt:1687 -[UP] flip: 4378, stem: 17286, fault:1653. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1685 -[UP] flip: 4330, stem: 17926, fault:1634. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1679 -[UP] flip: 7527, stem: 19466, fault:1634. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1663 -[UP] flip: 1721, stem: 19406, fault:1615. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1613 -[UP] flip: 6438, stem: 17844, fault:1615. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1616 -[UP] flip: 6962, stem: 18724, fault:1615. flip_cnt: 7, stem_cnt: 1444, fault_cnt:1634 -[UP] flip: 4618, stem: 16765, fault:1596. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1659 -[UP] flip: 0, stem: 17866, fault:1596. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1659 -[UP] flip: 8364, stem: 19346, fault:1596. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1655 -[UP] flip: 0, stem: 21646, fault:1596. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1655 -[UP] flip: 2316, stem: 22487, fault:1596. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1654 -[UP] flip: 3836, stem: 23448, fault:1596. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1652 -[UP] flip: 4952, stem: 19526, fault:1577. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1601 -[UP] flip: 0, stem: 18606, fault:1577. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1594 -[UP] flip: 0, stem: 17267, fault:1444. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1487 -[UP] flip: 0, stem: 17447, fault:1444. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1487 -[UP] flip: 0, stem: 18127, fault:1444. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1487 -[UP] flip: 5252, stem: 17205, fault:1482. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1513 -[UP] flip: 2326, stem: 17667, fault:1216. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1154 -[UP] flip: 1421, stem: 17928, fault:1216. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1151 -[UP] flip: 0, stem: 17729, fault:1216. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1151 -[UP] flip: 0, stem: 18489, fault:1216. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1151 -[UP] flip: 2326, stem: 18786, fault:1216. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1154 -[UP] flip: 0, stem: 18546, fault:1254. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1181 -[UP] flip: 9990, stem: 18926, fault:1254. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1177 -[UP] flip: 0, stem: 19667, fault:1254. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1177 -[UP] flip: 1838, stem: 18948, fault:1254. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1174 -[UP] flip: 5703, stem: 19348, fault:1254. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1172 -[UP] flip: 5958, stem: 19328, fault:1254. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1169 -[UP] flip: 1762, stem: 19648, fault:1235. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1160 -[UP] flip: 9224, stem: 19389, fault:1368. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1367 -[UP] flip: 1425, stem: 18027, fault:1368. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1364 -[UP] flip: 0, stem: 18667, fault:1368. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1384 -[UP] flip: 0, stem: 19427, fault:1368. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1384 -[UP] flip: 1371, stem: 19725, fault:1368. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1389 -[UP] flip: 5557, stem: 20065, fault:1368. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1386 -[UP] flip: 0, stem: 20446, fault:1368. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1365 -[UP] flip: 0, stem: 16409, fault:1197. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1183 -[UP] flip: 0, stem: 16830, fault:1197. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1179 -[UP] flip: 4673, stem: 17410, fault:1178. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1177 -[UP] flip: 0, stem: 18572, fault:1140. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1167 -[UP] flip: 0, stem: 19413, fault:1140. flip_cnt: 0, stem_cnt: 1435, fault_cnt:1167 -[UP] flip: 5595, stem: 14931, fault:1140. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1157 -[UP] flip: 5548, stem: 14253, fault:1140. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1148 -[UP] flip: 0, stem: 10989, fault:1387. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1549 -[UP] flip: 2451, stem: 10649, fault:1463. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1741 -[UP] flip: 3100, stem: 11829, fault:1463. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1739 -[UP] flip: 1400, stem: 12488, fault:1463. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1738 -[UP] flip: 4650, stem: 12028, fault:1463. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1733 -[UP] flip: 4684, stem: 12588, fault:1463. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1735 -[UP] flip: 6336, stem: 13046, fault:1463. flip_cnt: 4, stem_cnt: 1442, fault_cnt:1751 -[UP] flip: 0, stem: 13648, fault:1463. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1754 -[UP] flip: 2342, stem: 14248, fault:1463. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1754 -[UP] flip: 1214, stem: 14707, fault:1482. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1757 -[UP] flip: 0, stem: 15527, fault:1558. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1767 -[UP] flip: 5182, stem: 15747, fault:1558. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1765 -[UP] flip: 2473, stem: 16507, fault:1558. flip_cnt: 3, stem_cnt: 1441, fault_cnt:1764 -[UP] flip: 2616, stem: 16550, fault:1387. flip_cnt: 3, stem_cnt: 1438, fault_cnt:1666 -[UP] flip: 3890, stem: 17551, fault:1387. flip_cnt: 4, stem_cnt: 1437, fault_cnt:1663 -[UP] flip: 3000, stem: 19491, fault:1387. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1659 -[UP] flip: 3003, stem: 18971, fault:1387. flip_cnt: 3, stem_cnt: 1437, fault_cnt:1658 -[UP] flip: 0, stem: 19792, fault:1387. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1658 -[UP] flip: 6952, stem: 20552, fault:1387. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1656 -[UP] flip: 3064, stem: 21191, fault:1387. flip_cnt: 3, stem_cnt: 1437, fault_cnt:1653 -[UP] flip: 7091, stem: 21711, fault:1387. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1649 -[UP] flip: 0, stem: 21209, fault:1387. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1649 -[UP] flip: 0, stem: 21669, fault:1387. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1649 -[UP] flip: 1643, stem: 20689, fault:1387. flip_cnt: 2, stem_cnt: 1439, fault_cnt:1648 -[UP] flip: 2606, stem: 21329, fault:1387. flip_cnt: 3, stem_cnt: 1439, fault_cnt:1647 -[UP] flip: 5599, stem: 17410, fault:1387. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1631 -[UP] flip: 0, stem: 16652, fault:1425. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1647 -[UP] flip: 0, stem: 17612, fault:1425. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1647 -[UP] flip: 3884, stem: 18533, fault:1425. flip_cnt: 4, stem_cnt: 1435, fault_cnt:1645 -[UP] flip: 5690, stem: 19133, fault:1387. flip_cnt: 5, stem_cnt: 1435, fault_cnt:1630 -[UP] flip: 3339, stem: 20754, fault:1311. flip_cnt: 4, stem_cnt: 1434, fault_cnt:1603 -[UP] flip: 4556, stem: 20836, fault:1311. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1592 -[UP] flip: 5703, stem: 22596, fault:1292. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1516 -[UP] flip: 0, stem: 21380, fault:1273. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1500 -[UP] flip: 0, stem: 20515, fault:1273. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1500 -[UP] flip: 2793, stem: 20635, fault:1273. flip_cnt: 3, stem_cnt: 1433, fault_cnt:1497 -[UP] flip: 4897, stem: 20014, fault:1273. flip_cnt: 5, stem_cnt: 1434, fault_cnt:1501 -[UP] flip: 3607, stem: 19915, fault:1330. flip_cnt: 4, stem_cnt: 1433, fault_cnt:1536 -[UP] flip: 4736, stem: 21135, fault:1330. flip_cnt: 2, stem_cnt: 1433, fault_cnt:1534 -[UP] flip: 7019, stem: 20458, fault:1368. flip_cnt: 7, stem_cnt: 1430, fault_cnt:1565 -[UP] flip: 0, stem: 20920, fault:1311. flip_cnt: 0, stem_cnt: 1428, fault_cnt:1519 -[UP] flip: 4598, stem: 20656, fault:1311. flip_cnt: 5, stem_cnt: 1432, fault_cnt:1523 -[UP] flip: 3928, stem: 20477, fault:1349. flip_cnt: 4, stem_cnt: 1431, fault_cnt:1578 -[UP] flip: 5190, stem: 21075, fault:1368. flip_cnt: 5, stem_cnt: 1433, fault_cnt:1582 -[UP] flip: 0, stem: 21895, fault:1406. flip_cnt: 0, stem_cnt: 1433, fault_cnt:1600 -[UP] flip: 1335, stem: 22596, fault:1406. flip_cnt: 2, stem_cnt: 1432, fault_cnt:1601 -[UP] flip: 6596, stem: 23756, fault:1406. flip_cnt: 7, stem_cnt: 1432, fault_cnt:1652 -[UP] flip: 0, stem: 24516, fault:1387. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1648 -[UP] flip: 0, stem: 25236, fault:1387. flip_cnt: 0, stem_cnt: 1432, fault_cnt:1648 -[UP] flip: 5605, stem: 25177, fault:1387. flip_cnt: 5, stem_cnt: 1431, fault_cnt:1642 -[UP] flip: 5676, stem: 24797, fault:1387. flip_cnt: 7, stem_cnt: 1431, fault_cnt:1638 -[UP] flip: 0, stem: 24897, fault:1387. flip_cnt: 0, stem_cnt: 1431, fault_cnt:1569 -[UP] flip: 4452, stem: 17632, fault:1406. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1573 -[UP] flip: 5768, stem: 17031, fault:1406. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1607 -[UP] flip: 0, stem: 17670, fault:1406. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1619 -[UP] flip: 0, stem: 18290, fault:1406. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1619 -[UP] flip: 3822, stem: 18650, fault:1406. flip_cnt: 3, stem_cnt: 1438, fault_cnt:1616 -[UP] flip: 2052, stem: 15768, fault:1444. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1626 -[UP] flip: 7485, stem: 16469, fault:1444. flip_cnt: 7, stem_cnt: 1439, fault_cnt:1622 -[UP] flip: 1547, stem: 17208, fault:1444. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1621 -[UP] flip: 1547, stem: 17746, fault:1444. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1618 -[UP] flip: 4224, stem: 17886, fault:1444. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1620 -[UP] flip: 0, stem: 18007, fault:1444. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1647 -[UP] flip: 1860, stem: 17848, fault:1425. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1646 -[UP] flip: 8598, stem: 17827, fault:1425. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1649 -[UP] flip: 0, stem: 19187, fault:1425. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1650 -[UP] flip: 0, stem: 19927, fault:1425. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1650 -[UP] flip: 0, stem: 17086, fault:1425. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1633 -[UP] flip: 0, stem: 17807, fault:1425. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1633 -[UP] flip: 7466, stem: 18227, fault:1425. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1629 -[UP] flip: 5971, stem: 19006, fault:1425. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1625 -[UP] flip: 1176, stem: 19647, fault:1425. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1733 -[UP] flip: 6996, stem: 19987, fault:1406. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1730 -[UP] flip: 2990, stem: 21208, fault:1406. flip_cnt: 4, stem_cnt: 1440, fault_cnt:1728 -[UP] flip: 9188, stem: 15768, fault:1406. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1684 -[UP] flip: 3531, stem: 16048, fault:1387. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1682 -[UP] flip: 5700, stem: 16168, fault:1387. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1680 -[UP] flip: 3920, stem: 16988, fault:1349. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1673 -[UP] flip: 0, stem: 16949, fault:1349. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1671 -[UP] flip: 0, stem: 16569, fault:1349. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1708 -[UP] flip: 0, stem: 17489, fault:1349. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1708 -[UP] flip: 3130, stem: 17809, fault:1349. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1716 -[UP] flip: 6027, stem: 18429, fault:1349. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1641 -[UP] flip: 0, stem: 19588, fault:1349. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1641 -[UP] flip: 3743, stem: 20207, fault:1349. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1644 -[UP] flip: 6839, stem: 20307, fault:1368. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1651 -[UP] flip: 2532, stem: 20228, fault:1311. flip_cnt: 3, stem_cnt: 1440, fault_cnt:1627 -[UP] flip: 4269, stem: 20907, fault:1311. flip_cnt: 4, stem_cnt: 1441, fault_cnt:1630 -[UP] flip: 1578, stem: 21008, fault:1311. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1633 -[UP] flip: 1386, stem: 20806, fault:1311. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1638 -[UP] flip: 9252, stem: 20507, fault:1311. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1640 -[UP] flip: 1756, stem: 20207, fault:1311. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1637 -[UP] flip: 8243, stem: 20927, fault:1330. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1639 -[UP] flip: 4802, stem: 21827, fault:1368. flip_cnt: 2, stem_cnt: 1441, fault_cnt:1642 -[UP] flip: 8695, stem: 21785, fault:1368. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1645 -[UP] flip: 8739, stem: 21365, fault:1368. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1648 -[UP] flip: 1471, stem: 20625, fault:1368. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1645 -[UP] flip: 4839, stem: 21225, fault:1368. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1644 -[UP] flip: 1599, stem: 21906, fault:1368. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1641 -[UP] flip: 7380, stem: 22726, fault:1368. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1637 -[UP] flip: 0, stem: 23747, fault:1368. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1637 -[UP] flip: 0, stem: 24127, fault:1368. flip_cnt: 0, stem_cnt: 1441, fault_cnt:1637 -[UP] flip: 3513, stem: 24667, fault:1368. flip_cnt: 5, stem_cnt: 1441, fault_cnt:1635 -[UP] flip: 7097, stem: 24887, fault:1216. flip_cnt: 7, stem_cnt: 1441, fault_cnt:1438 -[UP] flip: 0, stem: 23789, fault:1159. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1356 -[UP] flip: 0, stem: 24229, fault:1140. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1346 -[UP] flip: 0, stem: 24389, fault:1140. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1346 -[UP] flip: 0, stem: 25009, fault:1140. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1346 -[UP] flip: 0, stem: 25169, fault:1140. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1346 -[UP] flip: 8302, stem: 22785, fault:1197. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1446 -[UP] flip: 8556, stem: 22605, fault:1197. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1443 -[UP] flip: 2697, stem: 22405, fault:1197. flip_cnt: 3, stem_cnt: 1443, fault_cnt:1442 -[UP] flip: 0, stem: 22724, fault:1197. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1358 -[UP] flip: 4187, stem: 22624, fault:1197. flip_cnt: 4, stem_cnt: 1444, fault_cnt:1356 -[UP] flip: 1343, stem: 21005, fault:1178. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1361 -[UP] flip: 5791, stem: 22465, fault:1178. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1358 -[UP] flip: 0, stem: 23125, fault:1159. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1354 -[UP] flip: 0, stem: 22865, fault:1159. flip_cnt: 0, stem_cnt: 1443, fault_cnt:1354 -[UP] flip: 1870, stem: 22025, fault:1159. flip_cnt: 3, stem_cnt: 1443, fault_cnt:1355 -[UP] flip: 2041, stem: 21225, fault:1330. flip_cnt: 2, stem_cnt: 1443, fault_cnt:1571 -[UP] flip: 7273, stem: 21445, fault:1330. flip_cnt: 7, stem_cnt: 1443, fault_cnt:1567 -[UP] flip: 4605, stem: 21745, fault:1349. flip_cnt: 5, stem_cnt: 1443, fault_cnt:1569 -[UP] flip: 0, stem: 22606, fault:1349. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1574 -[UP] flip: 1515, stem: 22566, fault:1349. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1571 -[UP] flip: 5742, stem: 23166, fault:1349. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1569 -[UP] flip: 4881, stem: 20832, fault:1311. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1530 -[UP] flip: 5836, stem: 20592, fault:1311. flip_cnt: 5, stem_cnt: 1436, fault_cnt:1526 -[UP] flip: 4871, stem: 21250, fault:1311. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1528 -[UP] flip: 3729, stem: 20832, fault:1311. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1536 -[UP] flip: 0, stem: 19312, fault:1292. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1515 -[UP] flip: 1459, stem: 20033, fault:1292. flip_cnt: 2, stem_cnt: 1435, fault_cnt:1512 -[UP] flip: 7179, stem: 19972, fault:1292. flip_cnt: 7, stem_cnt: 1436, fault_cnt:1508 -[UP] flip: 0, stem: 18214, fault:1235. flip_cnt: 0, stem_cnt: 1434, fault_cnt:1465 -[UP] flip: 4295, stem: 18335, fault:1235. flip_cnt: 4, stem_cnt: 1433, fault_cnt:1463 -[UP] flip: 0, stem: 15831, fault:1254. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1482 -[UP] flip: 0, stem: 16111, fault:1254. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1482 -[UP] flip: 0, stem: 15771, fault:1254. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1482 -[UP] flip: 1684, stem: 15992, fault:1235. flip_cnt: 2, stem_cnt: 1436, fault_cnt:1479 -[UP] flip: 0, stem: 15991, fault:1235. flip_cnt: 0, stem_cnt: 1437, fault_cnt:1484 -[UP] flip: 3027, stem: 16952, fault:1235. flip_cnt: 4, stem_cnt: 1436, fault_cnt:1482 -[UP] flip: 0, stem: 17632, fault:1235. flip_cnt: 0, stem_cnt: 1436, fault_cnt:1477 -[UP] flip: 5749, stem: 18070, fault:1235. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1479 -[UP] flip: 8066, stem: 18570, fault:1349. flip_cnt: 7, stem_cnt: 1438, fault_cnt:1539 -[UP] flip: 0, stem: 18209, fault:1368. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1610 -[UP] flip: 7206, stem: 18709, fault:1368. flip_cnt: 5, stem_cnt: 1439, fault_cnt:1606 -[UP] flip: 3461, stem: 18468, fault:1368. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1604 -[UP] flip: 0, stem: 19168, fault:1349. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1594 -[UP] flip: 1759, stem: 19328, fault:1349. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1595 -[UP] flip: 1941, stem: 19788, fault:1349. flip_cnt: 2, stem_cnt: 1440, fault_cnt:1594 -[UP] flip: 5719, stem: 20108, fault:1349. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1590 -[UP] flip: 0, stem: 20309, fault:1349. flip_cnt: 0, stem_cnt: 1439, fault_cnt:1581 -[UP] flip: 0, stem: 20870, fault:1349. flip_cnt: 0, stem_cnt: 1438, fault_cnt:1585 -[UP] flip: 5825, stem: 21550, fault:1349. flip_cnt: 5, stem_cnt: 1438, fault_cnt:1583 -[UP] flip: 1207, stem: 22111, fault:1349. flip_cnt: 2, stem_cnt: 1437, fault_cnt:1580 -[UP] flip: 3659, stem: 23031, fault:1349. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1577 -[UP] flip: 7497, stem: 24151, fault:1349. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1572 -[UP] flip: 5186, stem: 24351, fault:1349. flip_cnt: 7, stem_cnt: 1437, fault_cnt:1568 -[UP] flip: 5172, stem: 24591, fault:1330. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1495 -[UP] flip: 8087, stem: 22451, fault:1368. flip_cnt: 5, stem_cnt: 1437, fault_cnt:1495 -[UP] flip: 8091, stem: 20308, fault:1330. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1473 -[UP] flip: 3799, stem: 20428, fault:1330. flip_cnt: 5, stem_cnt: 1440, fault_cnt:1528 -[UP] flip: 8114, stem: 21308, fault:1330. flip_cnt: 7, stem_cnt: 1440, fault_cnt:1524 -[UP] flip: 0, stem: 17828, fault:1216. flip_cnt: 0, stem_cnt: 1440, fault_cnt:1351 -[UP] flip: 4195, stem: 18006, fault:1235. flip_cnt: 4, stem_cnt: 1442, fault_cnt:1418 -[UP] flip: 5375, stem: 17226, fault:1216. flip_cnt: 7, stem_cnt: 1442, fault_cnt:1414 -[UP] flip: 0, stem: 17806, fault:1216. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1414 -[UP] flip: 5552, stem: 18106, fault:1216. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1408 -[UP] flip: 0, stem: 18686, fault:1216. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1410 -[UP] flip: 0, stem: 18846, fault:1216. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1410 -[UP] flip: 2787, stem: 18806, fault:1216. flip_cnt: 3, stem_cnt: 1442, fault_cnt:1407 -[UP] flip: 1951, stem: 19126, fault:1216. flip_cnt: 2, stem_cnt: 1442, fault_cnt:1406 -[UP] flip: 8439, stem: 20426, fault:1216. flip_cnt: 5, stem_cnt: 1442, fault_cnt:1403 -[UP] flip: 0, stem: 20726, fault:1216. flip_cnt: 0, stem_cnt: 1442, fault_cnt:1403 -[UP] flip: 0, stem: 15082, fault:1140. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1342 -[UP] flip: 0, stem: 16922, fault:1140. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1342 -[UP] flip: 2811, stem: 17302, fault:1140. flip_cnt: 3, stem_cnt: 1446, fault_cnt:1341 -[UP] flip: 7105, stem: 17301, fault:1140. flip_cnt: 5, stem_cnt: 1447, fault_cnt:1299 -[UP] flip: 5681, stem: 15802, fault:1140. flip_cnt: 5, stem_cnt: 1446, fault_cnt:1317 -[UP] flip: 1506, stem: 16883, fault:1140. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1316 -[UP] flip: 0, stem: 15882, fault:1140. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1316 -[UP] flip: 0, stem: 15962, fault:1140. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1316 -[UP] flip: 0, stem: 17042, fault:1140. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1316 -[UP] flip: 3030, stem: 17943, fault:1140. flip_cnt: 4, stem_cnt: 1445, fault_cnt:1314 -[UP] flip: 0, stem: 20164, fault:1140. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1314 -[UP] flip: 0, stem: 20964, fault:1140. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1314 -[UP] flip: 1775, stem: 21364, fault:1140. flip_cnt: 2, stem_cnt: 1444, fault_cnt:1311 -[UP] flip: 0, stem: 21102, fault:1140. flip_cnt: 0, stem_cnt: 1446, fault_cnt:1311 -[UP] flip: 4669, stem: 20983, fault:1140. flip_cnt: 4, stem_cnt: 1445, fault_cnt:1309 -[UP] flip: 3627, stem: 21162, fault:1159. flip_cnt: 4, stem_cnt: 1446, fault_cnt:1310 -[UP] flip: 0, stem: 19203, fault:1140. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1307 -[UP] flip: 0, stem: 19403, fault:1140. flip_cnt: 0, stem_cnt: 1445, fault_cnt:1313 -[UP] flip: 4739, stem: 19563, fault:1140. flip_cnt: 5, stem_cnt: 1445, fault_cnt:1309 -[UP] flip: 8172, stem: 19244, fault:1140. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1316 -[UP] flip: 0, stem: 19544, fault:1140. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1316 -[UP] flip: 6134, stem: 19684, fault:1140. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1313 -[UP] flip: 8283, stem: 18744, fault:1140. flip_cnt: 5, stem_cnt: 1444, fault_cnt:1310 -[UP] flip: 0, stem: 19364, fault:1140. flip_cnt: 0, stem_cnt: 1444, fault_cnt:1310 -[UP] flip: 1670, stem: 19403, fault:1140. flip_cnt: 2, stem_cnt: 1445, fault_cnt:1311 -[UP] flip: 0, stem: 19901, fault:1197. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1403 -[UP] flip: 8792, stem: 20941, fault:1159. flip_cnt: 7, stem_cnt: 1447, fault_cnt:1399 -[UP] flip: 7295, stem: 21601, fault:1159. flip_cnt: 7, stem_cnt: 1447, fault_cnt:1395 -[UP] flip: 0, stem: 21039, fault:1159. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1394 -[UP] flip: 0, stem: 21259, fault:1159. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1394 -[UP] flip: 1807, stem: 21960, fault:1159. flip_cnt: 2, stem_cnt: 1448, fault_cnt:1391 -[UP] flip: 0, stem: 22679, fault:1159. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1399 -[UP] flip: 0, stem: 22860, fault:1159. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1399 -[UP] flip: 8186, stem: 15657, fault:1178. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1428 -[UP] flip: 4999, stem: 16137, fault:1387. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1677 -[UP] flip: 4379, stem: 13917, fault:1387. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1669 -[UP] flip: 4378, stem: 14617, fault:1387. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1667 -[UP] flip: 7706, stem: 16437, fault:1387. flip_cnt: 7, stem_cnt: 1451, fault_cnt:1663 -[UP] flip: 0, stem: 14895, fault:1406. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1671 -[UP] flip: 7516, stem: 14795, fault:1368. flip_cnt: 7, stem_cnt: 1453, fault_cnt:1667 -[UP] flip: 0, stem: 15415, fault:1368. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1667 -[UP] flip: 7875, stem: 15975, fault:1368. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1664 -[UP] flip: 6709, stem: 16215, fault:1368. flip_cnt: 7, stem_cnt: 1453, fault_cnt:1660 -[UP] flip: 0, stem: 16035, fault:1368. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1660 -[UP] flip: 1726, stem: 16196, fault:1368. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1659 -[UP] flip: 0, stem: 18056, fault:1368. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1653 -[UP] flip: 3795, stem: 18076, fault:1368. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1651 -[UP] flip: 0, stem: 18696, fault:1311. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1570 -[UP] flip: 2151, stem: 17776, fault:1311. flip_cnt: 3, stem_cnt: 1452, fault_cnt:1571 -[UP] flip: 4258, stem: 18097, fault:1311. flip_cnt: 4, stem_cnt: 1451, fault_cnt:1569 -[UP] flip: 0, stem: 13613, fault:1311. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1593 -[UP] flip: 2950, stem: 14853, fault:1311. flip_cnt: 3, stem_cnt: 1455, fault_cnt:1594 -[UP] flip: 5043, stem: 15113, fault:1311. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1593 -[UP] flip: 4394, stem: 13493, fault:1368. flip_cnt: 4, stem_cnt: 1455, fault_cnt:1758 -[UP] flip: 5034, stem: 14573, fault:1368. flip_cnt: 7, stem_cnt: 1455, fault_cnt:1753 -[UP] flip: 0, stem: 14672, fault:1330. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1706 -[UP] flip: 1683, stem: 14993, fault:1330. flip_cnt: 2, stem_cnt: 1455, fault_cnt:1703 -[UP] flip: 0, stem: 14736, fault:1330. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1703 -[UP] flip: 0, stem: 15736, fault:1330. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1703 -[UP] flip: 3740, stem: 15176, fault:1330. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1701 -[UP] flip: 0, stem: 15636, fault:1330. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1698 -[UP] flip: 5893, stem: 15876, fault:1330. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1696 -[UP] flip: 9119, stem: 17336, fault:1330. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1694 -[UP] flip: 0, stem: 16476, fault:1330. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1694 -[UP] flip: 7398, stem: 17556, fault:1330. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1690 -[UP] flip: 2198, stem: 17816, fault:1330. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1687 -[UP] flip: 7271, stem: 17956, fault:1330. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1684 -[UP] flip: 2479, stem: 18336, fault:1330. flip_cnt: 3, stem_cnt: 1452, fault_cnt:1685 -[UP] flip: 1896, stem: 17537, fault:1330. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1682 -[UP] flip: 9133, stem: 16675, fault:1330. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1684 -[UP] flip: 2991, stem: 17058, fault:1330. flip_cnt: 4, stem_cnt: 1450, fault_cnt:1682 -[UP] flip: 0, stem: 17918, fault:1330. flip_cnt: 0, stem_cnt: 1450, fault_cnt:1681 -[UP] flip: 0, stem: 18179, fault:1330. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1678 -[UP] flip: 9122, stem: 18859, fault:1330. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1676 -[UP] flip: 2999, stem: 18876, fault:1330. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1678 -[UP] flip: 0, stem: 19176, fault:1330. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1733 -[UP] flip: 5865, stem: 19736, fault:1330. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1730 -[UP] flip: 0, stem: 20196, fault:1330. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1730 -[UP] flip: 2476, stem: 19157, fault:1330. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1727 -[UP] flip: 2905, stem: 20278, fault:1330. flip_cnt: 4, stem_cnt: 1450, fault_cnt:1725 -[UP] flip: 3261, stem: 19099, fault:1311. flip_cnt: 3, stem_cnt: 1449, fault_cnt:1613 -[UP] flip: 5095, stem: 19719, fault:1330. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1614 -[UP] flip: 9139, stem: 19557, fault:1330. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1616 -[UP] flip: 6066, stem: 19477, fault:1406. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1683 -[UP] flip: 8709, stem: 19217, fault:1406. flip_cnt: 7, stem_cnt: 1451, fault_cnt:1677 -[UP] flip: 0, stem: 15677, fault:1425. flip_cnt: 0, stem_cnt: 1451, fault_cnt:1675 -[UP] flip: 1700, stem: 15977, fault:1425. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1672 -[UP] flip: 3936, stem: 16418, fault:1425. flip_cnt: 4, stem_cnt: 1450, fault_cnt:1670 -[UP] flip: 3002, stem: 16057, fault:1254. flip_cnt: 4, stem_cnt: 1451, fault_cnt:1480 -[UP] flip: 9181, stem: 17277, fault:1349. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1733 -[UP] flip: 6221, stem: 17518, fault:1349. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1729 -[UP] flip: 0, stem: 17477, fault:1653. flip_cnt: 0, stem_cnt: 1451, fault_cnt:1865 -[UP] flip: 3878, stem: 17757, fault:1653. flip_cnt: 5, stem_cnt: 1451, fault_cnt:1862 -[UP] flip: 8896, stem: 18137, fault:1653. flip_cnt: 7, stem_cnt: 1451, fault_cnt:1858 -[UP] flip: 1426, stem: 15999, fault:1653. flip_cnt: 2, stem_cnt: 1449, fault_cnt:1852 -[UP] flip: 5407, stem: 15876, fault:1653. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1861 -[UP] flip: 1662, stem: 17537, fault:1653. flip_cnt: 2, stem_cnt: 1451, fault_cnt:1860 -[UP] flip: 789, stem: 17717, fault:1653. flip_cnt: 1, stem_cnt: 1451, fault_cnt:1857 -[UP] flip: 3378, stem: 17376, fault:1672. flip_cnt: 4, stem_cnt: 1452, fault_cnt:1862 -[UP] flip: 5773, stem: 17936, fault:1672. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1862 -[UP] flip: 3006, stem: 17476, fault:1672. flip_cnt: 3, stem_cnt: 1452, fault_cnt:1841 -[UP] flip: 0, stem: 15836, fault:1672. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1838 -[UP] flip: 6443, stem: 16416, fault:1672. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1860 -[UP] flip: 2496, stem: 14876, fault:1653. flip_cnt: 3, stem_cnt: 1452, fault_cnt:1852 -[UP] flip: 0, stem: 15075, fault:1653. flip_cnt: 0, stem_cnt: 1453, fault_cnt:1852 -[UP] flip: 3606, stem: 15254, fault:1653. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1862 -[UP] flip: 0, stem: 14794, fault:1653. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1862 -[UP] flip: 6181, stem: 16334, fault:1653. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1860 -[UP] flip: 1697, stem: 16875, fault:1634. flip_cnt: 2, stem_cnt: 1453, fault_cnt:1851 -[UP] flip: 7275, stem: 17655, fault:1615. flip_cnt: 5, stem_cnt: 1453, fault_cnt:1848 -[UP] flip: 9125, stem: 18575, fault:1615. flip_cnt: 7, stem_cnt: 1453, fault_cnt:1874 -[UP] flip: 1673, stem: 18036, fault:1615. flip_cnt: 2, stem_cnt: 1452, fault_cnt:1871 -[UP] flip: 7637, stem: 14874, fault:1596. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1883 -[UP] flip: 0, stem: 15434, fault:1558. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1873 -[UP] flip: 0, stem: 17574, fault:1558. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1873 -[UP] flip: 0, stem: 18514, fault:1558. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1875 -[UP] flip: 4208, stem: 18875, fault:1558. flip_cnt: 4, stem_cnt: 1453, fault_cnt:1873 -[UP] flip: 6111, stem: 17376, fault:1539. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1827 -[UP] flip: 9440, stem: 15196, fault:1558. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1827 -[UP] flip: 6446, stem: 15236, fault:1558. flip_cnt: 5, stem_cnt: 1452, fault_cnt:1825 -[UP] flip: 9200, stem: 15596, fault:1558. flip_cnt: 7, stem_cnt: 1452, fault_cnt:1821 -[UP] flip: 0, stem: 16356, fault:1558. flip_cnt: 0, stem_cnt: 1452, fault_cnt:1810 -[UP] flip: 2913, stem: 15676, fault:1558. flip_cnt: 3, stem_cnt: 1452, fault_cnt:1807 -[UP] flip: 0, stem: 16999, fault:1577. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1847 -[UP] flip: 7441, stem: 16639, fault:1577. flip_cnt: 7, stem_cnt: 1449, fault_cnt:1843 -[UP] flip: 5024, stem: 17859, fault:1577. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1830 -[UP] flip: 2634, stem: 18278, fault:1539. flip_cnt: 3, stem_cnt: 1450, fault_cnt:1787 -[UP] flip: 0, stem: 18098, fault:1539. flip_cnt: 0, stem_cnt: 1450, fault_cnt:1787 -[UP] flip: 3498, stem: 19059, fault:1539. flip_cnt: 4, stem_cnt: 1449, fault_cnt:1785 -[UP] flip: 4901, stem: 19639, fault:1520. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1780 -[UP] flip: 0, stem: 20000, fault:1520. flip_cnt: 0, stem_cnt: 1448, fault_cnt:1778 -[UP] flip: 5939, stem: 18220, fault:1520. flip_cnt: 5, stem_cnt: 1448, fault_cnt:1773 -[UP] flip: 2356, stem: 18600, fault:1520. flip_cnt: 3, stem_cnt: 1448, fault_cnt:1770 -[UP] flip: 0, stem: 18621, fault:1520. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1770 -[UP] flip: 0, stem: 18981, fault:1520. flip_cnt: 0, stem_cnt: 1447, fault_cnt:1770 -[UP] flip: 0, stem: 17679, fault:1425. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1607 -[UP] flip: 7438, stem: 17978, fault:1425. flip_cnt: 4, stem_cnt: 1450, fault_cnt:1610 -[UP] flip: 9285, stem: 17978, fault:1425. flip_cnt: 5, stem_cnt: 1450, fault_cnt:1623 -[UP] flip: 0, stem: 19579, fault:1425. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1645 -[UP] flip: 8006, stem: 20499, fault:1425. flip_cnt: 5, stem_cnt: 1449, fault_cnt:1642 -[UP] flip: 0, stem: 20499, fault:1425. flip_cnt: 0, stem_cnt: 1449, fault_cnt:1642 -[UP] flip: 6904, stem: 17755, fault:1406. flip_cnt: 4, stem_cnt: 1453, fault_cnt:1657 -[UP] flip: 3514, stem: 16952, fault:1406. flip_cnt: 4, stem_cnt: 1456, fault_cnt:1663 -[UP] flip: 9335, stem: 17392, fault:1596. flip_cnt: 7, stem_cnt: 1456, fault_cnt:1892 -[UP] flip: 6357, stem: 16972, fault:1596. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1889 -[UP] flip: 1364, stem: 16872, fault:1596. flip_cnt: 2, stem_cnt: 1456, fault_cnt:1890 -[UP] flip: 6299, stem: 16110, fault:1653. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1937 -[UP] flip: 2074, stem: 15731, fault:1653. flip_cnt: 2, stem_cnt: 1457, fault_cnt:1942 -[UP] flip: 4216, stem: 15651, fault:1653. flip_cnt: 4, stem_cnt: 1457, fault_cnt:1940 -[UP] flip: 7572, stem: 14794, fault:1653. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1932 -[UP] flip: 6497, stem: 15034, fault:1653. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1930 -[UP] flip: 10021, stem: 16054, fault:1558. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1870 -[UP] flip: 4479, stem: 16614, fault:1558. flip_cnt: 5, stem_cnt: 1454, fault_cnt:1867 -[UP] flip: 8015, stem: 16413, fault:1539. flip_cnt: 5, stem_cnt: 1455, fault_cnt:1864 -[UP] flip: 3299, stem: 15593, fault:1596. flip_cnt: 3, stem_cnt: 1455, fault_cnt:1908 -[UP] flip: 1473, stem: 16034, fault:1596. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1905 -[UP] flip: 2513, stem: 15574, fault:1653. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1965 -[UP] flip: 7945, stem: 10452, fault:1634. flip_cnt: 7, stem_cnt: 1456, fault_cnt:1932 -[UP] flip: 8191, stem: 10972, fault:1596. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1905 -[UP] flip: 0, stem: 11232, fault:1596. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1905 -[UP] flip: 7410, stem: 11732, fault:1596. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1901 -[UP] flip: 3032, stem: 9972, fault:1596. flip_cnt: 3, stem_cnt: 1456, fault_cnt:1902 -[UP] flip: 3474, stem: 10331, fault:1596. flip_cnt: 4, stem_cnt: 1457, fault_cnt:1902 -[UP] flip: 3939, stem: 11251, fault:1596. flip_cnt: 5, stem_cnt: 1457, fault_cnt:1900 -[UP] flip: 7970, stem: 10829, fault:1501. flip_cnt: 5, stem_cnt: 1459, fault_cnt:1827 -[UP] flip: 6162, stem: 10968, fault:1501. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1824 -[UP] flip: 5826, stem: 11188, fault:1463. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1813 -[UP] flip: 4515, stem: 11428, fault:1463. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1810 -[UP] flip: 3090, stem: 10768, fault:1482. flip_cnt: 3, stem_cnt: 1460, fault_cnt:1836 -[UP] flip: 0, stem: 11008, fault:1482. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1836 -[UP] flip: 0, stem: 11428, fault:1482. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1836 -[UP] flip: 0, stem: 11788, fault:1482. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1836 -[UP] flip: 5683, stem: 12128, fault:1482. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1832 -[UP] flip: 1674, stem: 11869, fault:1292. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1561 -[UP] flip: 9644, stem: 11229, fault:1292. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1557 -[UP] flip: 7802, stem: 12789, fault:1311. flip_cnt: 5, stem_cnt: 1459, fault_cnt:1566 -[UP] flip: 6535, stem: 13109, fault:1311. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1562 -[UP] flip: 1866, stem: 12688, fault:1311. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1563 -[UP] flip: 1926, stem: 12528, fault:1406. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1648 -[UP] flip: 3872, stem: 15249, fault:1406. flip_cnt: 4, stem_cnt: 1459, fault_cnt:1646 -[UP] flip: 7241, stem: 15129, fault:1368. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1641 -[UP] flip: 6974, stem: 14886, fault:1368. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1648 -[UP] flip: 0, stem: 13987, fault:1368. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1648 -[UP] flip: 3313, stem: 13147, fault:1368. flip_cnt: 4, stem_cnt: 1461, fault_cnt:1646 -[UP] flip: 4529, stem: 13325, fault:1387. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1705 -[UP] flip: 2137, stem: 12785, fault:1520. flip_cnt: 2, stem_cnt: 1463, fault_cnt:1900 -[UP] flip: 3778, stem: 12685, fault:1520. flip_cnt: 3, stem_cnt: 1463, fault_cnt:1897 -[UP] flip: 8493, stem: 12185, fault:1520. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1894 -[UP] flip: 0, stem: 10126, fault:1520. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1888 -[UP] flip: 2807, stem: 8887, fault:1520. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1885 -[UP] flip: 4059, stem: 9147, fault:1520. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1883 -[UP] flip: 2906, stem: 9827, fault:1520. flip_cnt: 3, stem_cnt: 1461, fault_cnt:1829 -[UP] flip: 0, stem: 10706, fault:1520. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1829 -[UP] flip: 6329, stem: 11066, fault:1520. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1827 -[UP] flip: 0, stem: 11086, fault:1520. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1814 -[UP] flip: 6279, stem: 10886, fault:1520. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1810 -[UP] flip: 8931, stem: 11726, fault:1520. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1801 -[UP] flip: 4866, stem: 12104, fault:1520. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1804 -[UP] flip: 1518, stem: 12745, fault:1520. flip_cnt: 2, stem_cnt: 1463, fault_cnt:1803 -[UP] flip: 1805, stem: 12226, fault:1520. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1802 -[UP] flip: 6571, stem: 12246, fault:1520. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1798 -[UP] flip: 0, stem: 12926, fault:1520. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1797 -[UP] flip: 2262, stem: 13127, fault:1520. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1794 -[UP] flip: 4548, stem: 12928, fault:1501. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1781 -[UP] flip: 4874, stem: 12728, fault:1368. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1590 -[UP] flip: 0, stem: 13288, fault:1368. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1582 -[UP] flip: 1522, stem: 11325, fault:1368. flip_cnt: 2, stem_cnt: 1463, fault_cnt:1585 -[UP] flip: 2787, stem: 12166, fault:1387. flip_cnt: 4, stem_cnt: 1462, fault_cnt:1647 -[UP] flip: 8548, stem: 12486, fault:1387. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1645 -[UP] flip: 1707, stem: 12007, fault:1387. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1642 -[UP] flip: 2116, stem: 13288, fault:1387. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1641 -[UP] flip: 4108, stem: 13768, fault:1387. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1639 -[UP] flip: 10112, stem: 14307, fault:1368. flip_cnt: 7, stem_cnt: 1461, fault_cnt:1638 -[UP] flip: 2054, stem: 15808, fault:1368. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1635 -[UP] flip: 8621, stem: 15248, fault:1368. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1633 -[UP] flip: 2176, stem: 15788, fault:1368. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1632 -[UP] flip: 0, stem: 16348, fault:1368. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1630 -[UP] flip: 1867, stem: 17489, fault:1368. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1627 -[UP] flip: 6687, stem: 16269, fault:1368. flip_cnt: 7, stem_cnt: 1459, fault_cnt:1620 -[UP] flip: 1737, stem: 13367, fault:1596. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1806 -[UP] flip: 6593, stem: 13467, fault:1596. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1797 -[UP] flip: 2253, stem: 14108, fault:1596. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1801 -[UP] flip: 7296, stem: 14728, fault:1596. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1799 -[UP] flip: 8748, stem: 14648, fault:1577. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1796 -[UP] flip: 9675, stem: 14148, fault:1577. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1792 -[UP] flip: 4747, stem: 14848, fault:1577. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1788 -[UP] flip: 4298, stem: 15369, fault:1387. flip_cnt: 4, stem_cnt: 1459, fault_cnt:1591 -[UP] flip: 0, stem: 11214, fault:1387. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1560 -[UP] flip: 4265, stem: 10574, fault:1387. flip_cnt: 4, stem_cnt: 1454, fault_cnt:1558 -[UP] flip: 2388, stem: 11632, fault:1577. flip_cnt: 2, stem_cnt: 1456, fault_cnt:1834 -[UP] flip: 0, stem: 12373, fault:1577. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1879 -[UP] flip: 0, stem: 14053, fault:1577. flip_cnt: 0, stem_cnt: 1455, fault_cnt:1879 -[UP] flip: 0, stem: 14814, fault:1577. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1879 -[UP] flip: 2399, stem: 15054, fault:1577. flip_cnt: 3, stem_cnt: 1454, fault_cnt:1878 -[UP] flip: 5309, stem: 13894, fault:1577. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1874 -[UP] flip: 0, stem: 11252, fault:1577. flip_cnt: 0, stem_cnt: 1456, fault_cnt:1877 -[UP] flip: 2282, stem: 10634, fault:1577. flip_cnt: 2, stem_cnt: 1454, fault_cnt:1873 -[UP] flip: 8153, stem: 10474, fault:1577. flip_cnt: 7, stem_cnt: 1454, fault_cnt:1869 -[UP] flip: 0, stem: 10274, fault:1596. flip_cnt: 0, stem_cnt: 1454, fault_cnt:1913 -[UP] flip: 5917, stem: 10492, fault:1596. flip_cnt: 5, stem_cnt: 1456, fault_cnt:1915 -[UP] flip: 1694, stem: 11132, fault:1596. flip_cnt: 2, stem_cnt: 1456, fault_cnt:1912 -[UP] flip: 4766, stem: 11370, fault:1596. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1916 -[UP] flip: 1715, stem: 12330, fault:1653. flip_cnt: 2, stem_cnt: 1458, fault_cnt:1953 -[UP] flip: 5090, stem: 12810, fault:1634. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1951 -[UP] flip: 1370, stem: 13650, fault:1634. flip_cnt: 2, stem_cnt: 1458, fault_cnt:1950 -[UP] flip: 1942, stem: 13010, fault:1634. flip_cnt: 2, stem_cnt: 1458, fault_cnt:1949 -[UP] flip: 6097, stem: 13490, fault:1634. flip_cnt: 5, stem_cnt: 1458, fault_cnt:1949 -[UP] flip: 8642, stem: 11808, fault:1634. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1952 -[UP] flip: 0, stem: 12648, fault:1653. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1964 -[UP] flip: 0, stem: 12908, fault:1653. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1964 -[UP] flip: 1627, stem: 13969, fault:1653. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1961 -[UP] flip: 6160, stem: 14148, fault:1653. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1968 -[UP] flip: 0, stem: 14168, fault:1653. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1978 -[UP] flip: 8441, stem: 14768, fault:1653. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1974 -[UP] flip: 9953, stem: 15328, fault:1672. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1977 -[UP] flip: 9804, stem: 15848, fault:1672. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1978 -[UP] flip: 5068, stem: 15788, fault:1672. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1975 -[UP] flip: 5891, stem: 15608, fault:1672. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1973 -[UP] flip: 4932, stem: 15708, fault:1672. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1967 -[UP] flip: 3072, stem: 14767, fault:1672. flip_cnt: 4, stem_cnt: 1461, fault_cnt:1957 -[UP] flip: 2664, stem: 14928, fault:1653. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1953 -[UP] flip: 2152, stem: 14808, fault:1653. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1950 -[UP] flip: 11731, stem: 16188, fault:1653. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1946 -[UP] flip: 6013, stem: 16068, fault:1634. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1942 -[UP] flip: 2414, stem: 16009, fault:1653. flip_cnt: 2, stem_cnt: 1459, fault_cnt:1942 -[UP] flip: 7389, stem: 15769, fault:1653. flip_cnt: 5, stem_cnt: 1459, fault_cnt:1940 -[UP] flip: 1327, stem: 16128, fault:1634. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1939 -[UP] flip: 2162, stem: 15728, fault:1634. flip_cnt: 3, stem_cnt: 1460, fault_cnt:1938 -[UP] flip: 1590, stem: 16008, fault:1634. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1935 -[UP] flip: 2614, stem: 15628, fault:1634. flip_cnt: 3, stem_cnt: 1460, fault_cnt:1932 -[UP] flip: 3549, stem: 14728, fault:1634. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1940 -[UP] flip: 6521, stem: 15228, fault:1615. flip_cnt: 5, stem_cnt: 1460, fault_cnt:1936 -[UP] flip: 0, stem: 14988, fault:1615. flip_cnt: 0, stem_cnt: 1460, fault_cnt:1905 -[UP] flip: 5912, stem: 13506, fault:1615. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1909 -[UP] flip: 0, stem: 14747, fault:1615. flip_cnt: 0, stem_cnt: 1461, fault_cnt:1939 -[UP] flip: 6203, stem: 13787, fault:1615. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1937 -[UP] flip: 6360, stem: 13146, fault:1615. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1920 -[UP] flip: 8330, stem: 13686, fault:1596. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1917 -[UP] flip: 1448, stem: 14307, fault:1596. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1914 -[UP] flip: 6115, stem: 13947, fault:1596. flip_cnt: 5, stem_cnt: 1461, fault_cnt:1911 -[UP] flip: 2941, stem: 14807, fault:1596. flip_cnt: 3, stem_cnt: 1461, fault_cnt:1908 -[UP] flip: 6462, stem: 12889, fault:1596. flip_cnt: 5, stem_cnt: 1459, fault_cnt:1904 -[UP] flip: 1891, stem: 13310, fault:1596. flip_cnt: 2, stem_cnt: 1458, fault_cnt:1901 -[UP] flip: 2470, stem: 13349, fault:1596. flip_cnt: 3, stem_cnt: 1459, fault_cnt:1914 -[UP] flip: 2833, stem: 14029, fault:1596. flip_cnt: 3, stem_cnt: 1459, fault_cnt:1913 -[UP] flip: 8514, stem: 13829, fault:1596. flip_cnt: 5, stem_cnt: 1459, fault_cnt:1902 -[UP] flip: 4050, stem: 10810, fault:1596. flip_cnt: 4, stem_cnt: 1458, fault_cnt:1896 -[UP] flip: 8099, stem: 11130, fault:1596. flip_cnt: 7, stem_cnt: 1458, fault_cnt:1899 -[UP] flip: 2350, stem: 12050, fault:1596. flip_cnt: 3, stem_cnt: 1458, fault_cnt:1896 -[UP] flip: 2171, stem: 10607, fault:1596. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1895 -[UP] flip: 10978, stem: 9847, fault:1596. flip_cnt: 7, stem_cnt: 1461, fault_cnt:1904 -[UP] flip: 3143, stem: 11410, fault:1596. flip_cnt: 4, stem_cnt: 1458, fault_cnt:1902 -[UP] flip: 3853, stem: 10990, fault:1596. flip_cnt: 4, stem_cnt: 1458, fault_cnt:1901 -[UP] flip: 5509, stem: 10488, fault:1596. flip_cnt: 7, stem_cnt: 1460, fault_cnt:1896 -[UP] flip: 1995, stem: 11088, fault:1501. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1844 -[UP] flip: 4257, stem: 11288, fault:1501. flip_cnt: 4, stem_cnt: 1460, fault_cnt:1842 -[UP] flip: 7468, stem: 10165, fault:1539. flip_cnt: 4, stem_cnt: 1463, fault_cnt:1863 -[UP] flip: 9004, stem: 9484, fault:1577. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1874 -[UP] flip: 3867, stem: 8283, fault:1577. flip_cnt: 4, stem_cnt: 1465, fault_cnt:1869 -[UP] flip: 0, stem: 8283, fault:1577. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1894 -[UP] flip: 4340, stem: 8459, fault:1577. flip_cnt: 4, stem_cnt: 1469, fault_cnt:1908 -[UP] flip: 7283, stem: 8339, fault:1577. flip_cnt: 7, stem_cnt: 1469, fault_cnt:1914 -[UP] flip: 7729, stem: 8819, fault:1558. flip_cnt: 5, stem_cnt: 1469, fault_cnt:1915 -[UP] flip: 7825, stem: 9139, fault:1558. flip_cnt: 5, stem_cnt: 1469, fault_cnt:1913 -[UP] flip: 4532, stem: 8537, fault:1558. flip_cnt: 4, stem_cnt: 1471, fault_cnt:1949 -[UP] flip: 0, stem: 8778, fault:1558. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1952 -[UP] flip: 6444, stem: 7658, fault:1558. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1949 -[UP] flip: 4517, stem: 8319, fault:1558. flip_cnt: 4, stem_cnt: 1469, fault_cnt:1945 -[UP] flip: 5669, stem: 9299, fault:1539. flip_cnt: 5, stem_cnt: 1469, fault_cnt:1932 -[UP] flip: 4658, stem: 10120, fault:1539. flip_cnt: 4, stem_cnt: 1468, fault_cnt:1930 -[UP] flip: 1435, stem: 10140, fault:1539. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1925 -[UP] flip: 10407, stem: 10540, fault:1539. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1926 -[UP] flip: 0, stem: 10900, fault:1634. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1990 -[UP] flip: 6894, stem: 11820, fault:1634. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1986 -[UP] flip: 2634, stem: 12081, fault:1634. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1983 -[UP] flip: 8772, stem: 13621, fault:1634. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1981 -[UP] flip: 0, stem: 14183, fault:1634. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1978 -[UP] flip: 0, stem: 14444, fault:1634. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1978 -[UP] flip: 4978, stem: 15324, fault:1634. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1974 -[UP] flip: 1881, stem: 15184, fault:1539. flip_cnt: 2, stem_cnt: 1464, fault_cnt:1919 -[UP] flip: 5891, stem: 17244, fault:1520. flip_cnt: 7, stem_cnt: 1464, fault_cnt:1915 -[UP] flip: 5164, stem: 16904, fault:1520. flip_cnt: 7, stem_cnt: 1464, fault_cnt:1911 -[UP] flip: 6196, stem: 16964, fault:1520. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1907 -[UP] flip: 0, stem: 16624, fault:1520. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1911 -[UP] flip: 2550, stem: 16844, fault:1520. flip_cnt: 3, stem_cnt: 1464, fault_cnt:1912 -[UP] flip: 5759, stem: 13843, fault:1539. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1924 -[UP] flip: 7085, stem: 13283, fault:1539. flip_cnt: 7, stem_cnt: 1465, fault_cnt:1920 -[UP] flip: 8564, stem: 13023, fault:1539. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1916 -[UP] flip: 0, stem: 13863, fault:1539. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1916 -[UP] flip: 7520, stem: 14243, fault:1539. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1914 -[UP] flip: 2556, stem: 14584, fault:1539. flip_cnt: 2, stem_cnt: 1464, fault_cnt:1911 -[UP] flip: 7922, stem: 14222, fault:1539. flip_cnt: 7, stem_cnt: 1466, fault_cnt:1908 -[UP] flip: 2367, stem: 13622, fault:1539. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1905 -[UP] flip: 7787, stem: 13182, fault:1539. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1902 -[UP] flip: 1721, stem: 13481, fault:1539. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1879 -[UP] flip: 7069, stem: 13721, fault:1539. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1894 -[UP] flip: 0, stem: 13942, fault:1539. flip_cnt: 0, stem_cnt: 1466, fault_cnt:1894 -[UP] flip: 5431, stem: 14962, fault:1539. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1895 -[UP] flip: 4747, stem: 11964, fault:1520. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1890 -[UP] flip: 0, stem: 13964, fault:1501. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1878 -[UP] flip: 0, stem: 14143, fault:1501. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1878 -[UP] flip: 9130, stem: 13423, fault:1501. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1876 -[UP] flip: 9951, stem: 9604, fault:1501. flip_cnt: 7, stem_cnt: 1464, fault_cnt:1862 -[UP] flip: 3148, stem: 8046, fault:1501. flip_cnt: 3, stem_cnt: 1462, fault_cnt:1857 -[UP] flip: 6073, stem: 7945, fault:1501. flip_cnt: 7, stem_cnt: 1463, fault_cnt:1853 -[UP] flip: 7751, stem: 8265, fault:1501. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1865 -[UP] flip: 2147, stem: 8646, fault:1501. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1862 -[UP] flip: 8019, stem: 9746, fault:1501. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1858 -[UP] flip: 3674, stem: 9584, fault:1520. flip_cnt: 4, stem_cnt: 1464, fault_cnt:1861 -[UP] flip: 8511, stem: 8864, fault:1539. flip_cnt: 7, stem_cnt: 1464, fault_cnt:1864 -[UP] flip: 0, stem: 9284, fault:1539. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1863 -[UP] flip: 5767, stem: 12144, fault:1539. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1860 -[UP] flip: 0, stem: 11846, fault:1539. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1859 -[UP] flip: 5935, stem: 12886, fault:1539. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1857 -[UP] flip: 3415, stem: 14186, fault:1539. flip_cnt: 3, stem_cnt: 1462, fault_cnt:1854 -[UP] flip: 1441, stem: 14486, fault:1539. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1853 -[UP] flip: 3051, stem: 13806, fault:1539. flip_cnt: 3, stem_cnt: 1462, fault_cnt:1849 -[UP] flip: 2057, stem: 13246, fault:1520. flip_cnt: 3, stem_cnt: 1462, fault_cnt:1862 -[UP] flip: 2651, stem: 12987, fault:1482. flip_cnt: 2, stem_cnt: 1461, fault_cnt:1853 -[UP] flip: 2124, stem: 12208, fault:1482. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1850 -[UP] flip: 8044, stem: 11566, fault:1482. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1854 -[UP] flip: 0, stem: 11446, fault:1520. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1964 -[UP] flip: 2946, stem: 12326, fault:1520. flip_cnt: 3, stem_cnt: 1462, fault_cnt:1961 -[UP] flip: 4011, stem: 12106, fault:1520. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1959 -[UP] flip: 7005, stem: 12926, fault:1520. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1955 -[UP] flip: 7279, stem: 12366, fault:1482. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1833 -[UP] flip: 2570, stem: 12446, fault:1482. flip_cnt: 3, stem_cnt: 1462, fault_cnt:1832 -[UP] flip: 5985, stem: 12406, fault:1444. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1818 -[UP] flip: 0, stem: 12626, fault:1444. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1803 -[UP] flip: 6261, stem: 12366, fault:1444. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1800 -[UP] flip: 2944, stem: 8565, fault:1444. flip_cnt: 4, stem_cnt: 1463, fault_cnt:1781 -[UP] flip: 2176, stem: 7843, fault:1444. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1778 -[UP] flip: 0, stem: 7464, fault:1463. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1814 -[UP] flip: 4183, stem: 9104, fault:1463. flip_cnt: 4, stem_cnt: 1464, fault_cnt:1843 -[UP] flip: 5733, stem: 10384, fault:1463. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1838 -[UP] flip: 7800, stem: 9423, fault:1463. flip_cnt: 7, stem_cnt: 1465, fault_cnt:1834 -[UP] flip: 5277, stem: 7882, fault:1463. flip_cnt: 7, stem_cnt: 1466, fault_cnt:1841 -[UP] flip: 9148, stem: 8122, fault:1406. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1686 -[UP] flip: 3804, stem: 7640, fault:1406. flip_cnt: 4, stem_cnt: 1468, fault_cnt:1689 -[UP] flip: 3535, stem: 7962, fault:1368. flip_cnt: 3, stem_cnt: 1466, fault_cnt:1688 -[UP] flip: 9046, stem: 8382, fault:1368. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1685 -[UP] flip: 0, stem: 8243, fault:1368. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1685 -[UP] flip: 1779, stem: 8843, fault:1368. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1686 -[UP] flip: 0, stem: 9023, fault:1368. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1688 -[UP] flip: 2984, stem: 9143, fault:1368. flip_cnt: 3, stem_cnt: 1465, fault_cnt:1687 -[UP] flip: 0, stem: 9263, fault:1368. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1687 -[UP] flip: 4067, stem: 10924, fault:1368. flip_cnt: 4, stem_cnt: 1464, fault_cnt:1685 -[UP] flip: 3806, stem: 11464, fault:1368. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1682 -[UP] flip: 8338, stem: 12504, fault:1368. flip_cnt: 5, stem_cnt: 1464, fault_cnt:1680 -[UP] flip: 1891, stem: 12405, fault:1368. flip_cnt: 2, stem_cnt: 1463, fault_cnt:1677 -[UP] flip: 5485, stem: 11163, fault:1368. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1711 -[UP] flip: 0, stem: 11663, fault:1368. flip_cnt: 0, stem_cnt: 1465, fault_cnt:1711 -[UP] flip: 2002, stem: 12823, fault:1368. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1712 -[UP] flip: 7482, stem: 12043, fault:1406. flip_cnt: 7, stem_cnt: 1465, fault_cnt:1951 -[UP] flip: 3851, stem: 12323, fault:1368. flip_cnt: 3, stem_cnt: 1465, fault_cnt:1942 -[UP] flip: 9193, stem: 12783, fault:1368. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1940 -[UP] flip: 2453, stem: 13863, fault:1368. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1937 -[UP] flip: 5314, stem: 12123, fault:1368. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1930 -[UP] flip: 2855, stem: 12304, fault:1368. flip_cnt: 4, stem_cnt: 1464, fault_cnt:1928 -[UP] flip: 1776, stem: 12365, fault:1368. flip_cnt: 2, stem_cnt: 1463, fault_cnt:1911 -[UP] flip: 0, stem: 12546, fault:1368. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1911 -[UP] flip: 5692, stem: 12066, fault:1368. flip_cnt: 2, stem_cnt: 1462, fault_cnt:1910 -[UP] flip: 7942, stem: 12186, fault:1368. flip_cnt: 7, stem_cnt: 1462, fault_cnt:1906 -[UP] flip: 9282, stem: 12526, fault:1368. flip_cnt: 5, stem_cnt: 1462, fault_cnt:1902 -[UP] flip: 0, stem: 13026, fault:1368. flip_cnt: 0, stem_cnt: 1462, fault_cnt:1902 -[UP] flip: 2667, stem: 11908, fault:1368. flip_cnt: 2, stem_cnt: 1460, fault_cnt:1899 -[UP] flip: 0, stem: 12009, fault:1368. flip_cnt: 0, stem_cnt: 1459, fault_cnt:1899 -[UP] flip: 10193, stem: 10025, fault:1387. flip_cnt: 7, stem_cnt: 1463, fault_cnt:1905 -[UP] flip: 9216, stem: 11505, fault:1387. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1901 -[UP] flip: 5760, stem: 11763, fault:1387. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1905 -[UP] flip: 2627, stem: 10001, fault:1482. flip_cnt: 3, stem_cnt: 1467, fault_cnt:1979 -[UP] flip: 2303, stem: 10002, fault:1482. flip_cnt: 2, stem_cnt: 1466, fault_cnt:1976 -[UP] flip: 3659, stem: 10302, fault:1482. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1974 -[UP] flip: 1954, stem: 9603, fault:1444. flip_cnt: 2, stem_cnt: 1465, fault_cnt:1967 -[UP] flip: 9149, stem: 9983, fault:1425. flip_cnt: 5, stem_cnt: 1465, fault_cnt:1964 -[UP] flip: 10716, stem: 11023, fault:1387. flip_cnt: 7, stem_cnt: 1465, fault_cnt:1932 -[UP] flip: 0, stem: 11824, fault:1387. flip_cnt: 0, stem_cnt: 1464, fault_cnt:1932 -[UP] flip: 3660, stem: 11084, fault:1387. flip_cnt: 3, stem_cnt: 1464, fault_cnt:1929 -[UP] flip: 6489, stem: 11125, fault:1368. flip_cnt: 5, stem_cnt: 1463, fault_cnt:1921 -[UP] flip: 5337, stem: 10260, fault:1368. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1924 -[UP] flip: 1614, stem: 8480, fault:1425. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1930 -[UP] flip: 8281, stem: 8100, fault:1425. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1926 -[UP] flip: 5332, stem: 7058, fault:1425. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1927 -[UP] flip: 3237, stem: 6657, fault:1425. flip_cnt: 3, stem_cnt: 1471, fault_cnt:1926 -[UP] flip: 2626, stem: 6877, fault:1425. flip_cnt: 3, stem_cnt: 1471, fault_cnt:1930 -[UP] flip: 4067, stem: 6977, fault:1425. flip_cnt: 4, stem_cnt: 1471, fault_cnt:1936 -[UP] flip: 5137, stem: 7117, fault:1387. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1742 -[UP] flip: 2812, stem: 7637, fault:1387. flip_cnt: 3, stem_cnt: 1471, fault_cnt:1741 -[UP] flip: 5845, stem: 9737, fault:1387. flip_cnt: 5, stem_cnt: 1471, fault_cnt:1739 -[UP] flip: 1829, stem: 9777, fault:1406. flip_cnt: 2, stem_cnt: 1471, fault_cnt:1936 -[UP] flip: 4698, stem: 9298, fault:1406. flip_cnt: 4, stem_cnt: 1470, fault_cnt:1934 -[UP] flip: 2480, stem: 8198, fault:1368. flip_cnt: 3, stem_cnt: 1470, fault_cnt:1744 -[UP] flip: 4632, stem: 7858, fault:1368. flip_cnt: 4, stem_cnt: 1470, fault_cnt:1742 -[UP] flip: 3456, stem: 7698, fault:1520. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1932 -[UP] flip: 4463, stem: 7238, fault:1501. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1860 -[UP] flip: 2400, stem: 6419, fault:1501. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1859 -[UP] flip: 6021, stem: 6659, fault:1501. flip_cnt: 7, stem_cnt: 1469, fault_cnt:1855 -[UP] flip: 0, stem: 6840, fault:1425. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1756 -[UP] flip: 11764, stem: 7760, fault:1425. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1752 -[UP] flip: 1837, stem: 7839, fault:1444. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1755 -[UP] flip: 8727, stem: 8039, fault:1558. flip_cnt: 7, stem_cnt: 1469, fault_cnt:1920 -[UP] flip: 8591, stem: 7679, fault:1558. flip_cnt: 7, stem_cnt: 1469, fault_cnt:1900 -[UP] flip: 0, stem: 7858, fault:1558. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1900 -[UP] flip: 0, stem: 8938, fault:1558. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1900 -[UP] flip: 2572, stem: 7419, fault:1558. flip_cnt: 2, stem_cnt: 1469, fault_cnt:1897 -[UP] flip: 6528, stem: 7759, fault:1558. flip_cnt: 5, stem_cnt: 1469, fault_cnt:1895 -[UP] flip: 2311, stem: 8038, fault:1558. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1898 -[UP] flip: 1876, stem: 8078, fault:1596. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2006 -[UP] flip: 7878, stem: 8338, fault:1596. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2000 -[UP] flip: 8562, stem: 7918, fault:1596. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1996 -[UP] flip: 8762, stem: 8079, fault:1634. flip_cnt: 5, stem_cnt: 1469, fault_cnt:2004 -[UP] flip: 8568, stem: 8339, fault:1596. flip_cnt: 7, stem_cnt: 1469, fault_cnt:2000 -[UP] flip: 0, stem: 8619, fault:1596. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1994 -[UP] flip: 2510, stem: 8380, fault:1596. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1991 -[UP] flip: 0, stem: 7800, fault:1596. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1991 -[UP] flip: 6712, stem: 4702, fault:1596. flip_cnt: 5, stem_cnt: 1466, fault_cnt:1988 -[UP] flip: 0, stem: 4942, fault:1596. flip_cnt: 0, stem_cnt: 1466, fault_cnt:1988 -[UP] flip: 8779, stem: 4600, fault:1596. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1990 -[UP] flip: 0, stem: 4760, fault:1596. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2002 -[UP] flip: 0, stem: 5740, fault:1596. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2002 -[UP] flip: 0, stem: 6020, fault:1596. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2002 -[UP] flip: 6540, stem: 4877, fault:1596. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2004 -[UP] flip: 7143, stem: 4997, fault:1596. flip_cnt: 7, stem_cnt: 1471, fault_cnt:2000 -[UP] flip: 0, stem: 6837, fault:1596. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1906 -[UP] flip: 2462, stem: 6637, fault:1596. flip_cnt: 2, stem_cnt: 1471, fault_cnt:1903 -[UP] flip: 0, stem: 8419, fault:1596. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1903 -[UP] flip: 0, stem: 8479, fault:1596. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1903 -[UP] flip: 2242, stem: 7540, fault:1634. flip_cnt: 2, stem_cnt: 1468, fault_cnt:1917 -[UP] flip: 2373, stem: 7560, fault:1634. flip_cnt: 3, stem_cnt: 1468, fault_cnt:1914 -[UP] flip: 9177, stem: 8840, fault:1615. flip_cnt: 5, stem_cnt: 1468, fault_cnt:1910 -[UP] flip: 1485, stem: 9381, fault:1615. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1907 -[UP] flip: 11696, stem: 10121, fault:1615. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1903 -[UP] flip: 6551, stem: 10361, fault:1615. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1901 -[UP] flip: 2584, stem: 10161, fault:1615. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1898 -[UP] flip: 4185, stem: 10241, fault:1615. flip_cnt: 3, stem_cnt: 1467, fault_cnt:1897 -[UP] flip: 4766, stem: 10361, fault:1615. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1895 -[UP] flip: 10660, stem: 11821, fault:1615. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1885 -[UP] flip: 5238, stem: 11221, fault:1615. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1881 -[UP] flip: 8468, stem: 12521, fault:1577. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1877 -[UP] flip: 6381, stem: 12801, fault:1577. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1871 -[UP] flip: 4641, stem: 13600, fault:1577. flip_cnt: 4, stem_cnt: 1468, fault_cnt:1872 -[UP] flip: 11357, stem: 12840, fault:1653. flip_cnt: 7, stem_cnt: 1468, fault_cnt:1995 -[UP] flip: 4395, stem: 13240, fault:1653. flip_cnt: 4, stem_cnt: 1468, fault_cnt:1993 -[UP] flip: 6577, stem: 12461, fault:1653. flip_cnt: 5, stem_cnt: 1467, fault_cnt:1988 -[UP] flip: 0, stem: 12781, fault:1653. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1986 -[UP] flip: 0, stem: 10980, fault:1653. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1986 -[UP] flip: 2179, stem: 12901, fault:1653. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1983 -[UP] flip: 1746, stem: 6958, fault:1634. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2016 -[UP] flip: 8605, stem: 7698, fault:1634. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2024 -[UP] flip: 4097, stem: 7738, fault:1634. flip_cnt: 4, stem_cnt: 1470, fault_cnt:2029 -[UP] flip: 0, stem: 7138, fault:1634. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2047 -[UP] flip: 1918, stem: 6957, fault:1634. flip_cnt: 2, stem_cnt: 1471, fault_cnt:2046 -[UP] flip: 6440, stem: 7158, fault:1634. flip_cnt: 5, stem_cnt: 1470, fault_cnt:2044 -[UP] flip: 8615, stem: 7298, fault:1634. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2040 -[UP] flip: 10712, stem: 7798, fault:1634. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2027 -[UP] flip: 0, stem: 8037, fault:1615. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1999 -[UP] flip: 0, stem: 7537, fault:1615. flip_cnt: 0, stem_cnt: 1471, fault_cnt:1999 -[UP] flip: 1868, stem: 8858, fault:1615. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1996 -[UP] flip: 5397, stem: 9158, fault:1615. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1994 -[UP] flip: 6141, stem: 9118, fault:1615. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1990 -[UP] flip: 6968, stem: 9458, fault:1615. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2004 -[UP] flip: 0, stem: 8736, fault:1615. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2004 -[UP] flip: 9460, stem: 8396, fault:1615. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2002 -[UP] flip: 2679, stem: 8837, fault:1615. flip_cnt: 2, stem_cnt: 1471, fault_cnt:1999 -[UP] flip: 2331, stem: 9438, fault:1615. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1994 -[UP] flip: 6370, stem: 10158, fault:1615. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1990 -[UP] flip: 2132, stem: 10978, fault:1615. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1986 -[UP] flip: 0, stem: 12978, fault:1615. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1986 -[UP] flip: 0, stem: 11258, fault:1615. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1986 -[UP] flip: 6821, stem: 9778, fault:1615. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1982 -[UP] flip: 5320, stem: 9958, fault:1615. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1978 -[UP] flip: 6762, stem: 8738, fault:1577. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1973 -[UP] flip: 1504, stem: 8578, fault:1577. flip_cnt: 2, stem_cnt: 1470, fault_cnt:1970 -[UP] flip: 6163, stem: 8458, fault:1577. flip_cnt: 7, stem_cnt: 1470, fault_cnt:1966 -[UP] flip: 0, stem: 9638, fault:1463. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1887 -[UP] flip: 0, stem: 9298, fault:1482. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1902 -[UP] flip: 0, stem: 9279, fault:1482. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1902 -[UP] flip: 0, stem: 9599, fault:1482. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1902 -[UP] flip: 0, stem: 9799, fault:1482. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1902 -[UP] flip: 0, stem: 9299, fault:1482. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1902 -[UP] flip: 0, stem: 11058, fault:1482. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1902 -[UP] flip: 8785, stem: 11458, fault:1482. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1900 -[UP] flip: 0, stem: 10460, fault:1482. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1896 -[UP] flip: 0, stem: 10500, fault:1482. flip_cnt: 0, stem_cnt: 1468, fault_cnt:1900 -[UP] flip: 0, stem: 8661, fault:1482. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1906 -[UP] flip: 8633, stem: 7461, fault:1482. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1902 -[UP] flip: 0, stem: 9021, fault:1463. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1892 -[UP] flip: 0, stem: 8961, fault:1463. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1892 -[UP] flip: 2391, stem: 9181, fault:1463. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1893 -[UP] flip: 7970, stem: 9741, fault:1463. flip_cnt: 7, stem_cnt: 1467, fault_cnt:1889 -[UP] flip: 0, stem: 10121, fault:1463. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1889 -[UP] flip: 1873, stem: 10141, fault:1463. flip_cnt: 2, stem_cnt: 1467, fault_cnt:1886 -[UP] flip: 0, stem: 11301, fault:1463. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1886 -[UP] flip: 0, stem: 10721, fault:1463. flip_cnt: 0, stem_cnt: 1467, fault_cnt:1886 -[UP] flip: 0, stem: 7239, fault:1463. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1886 -[UP] flip: 0, stem: 7339, fault:1463. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1886 -[UP] flip: 0, stem: 7819, fault:1463. flip_cnt: 0, stem_cnt: 1469, fault_cnt:1886 -[UP] flip: 6432, stem: 8039, fault:1463. flip_cnt: 5, stem_cnt: 1469, fault_cnt:1884 -[UP] flip: 0, stem: 7298, fault:1463. flip_cnt: 0, stem_cnt: 1470, fault_cnt:1884 -[UP] flip: 5095, stem: 7658, fault:1463. flip_cnt: 5, stem_cnt: 1470, fault_cnt:1880 -[UP] flip: 6437, stem: 7776, fault:1463. flip_cnt: 5, stem_cnt: 1472, fault_cnt:1880 -[UP] flip: 2401, stem: 7577, fault:1691. flip_cnt: 2, stem_cnt: 1471, fault_cnt:2000 -[UP] flip: 4094, stem: 5676, fault:1843. flip_cnt: 4, stem_cnt: 1472, fault_cnt:2017 -[UP] flip: 0, stem: 5836, fault:1938. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2058 -[UP] flip: 0, stem: 5536, fault:1938. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2058 -[UP] flip: 0, stem: 6457, fault:1938. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2058 -[UP] flip: 3915, stem: 5735, fault:1938. flip_cnt: 4, stem_cnt: 1473, fault_cnt:2061 -[UP] flip: 5063, stem: 5453, fault:1957. flip_cnt: 4, stem_cnt: 1475, fault_cnt:2069 -[UP] flip: 8310, stem: 5933, fault:1995. flip_cnt: 7, stem_cnt: 1475, fault_cnt:2097 -[UP] flip: 6088, stem: 5711, fault:1995. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2098 -[UP] flip: 5148, stem: 4611, fault:1995. flip_cnt: 5, stem_cnt: 1477, fault_cnt:2090 -[UP] flip: 2187, stem: 4672, fault:1995. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2083 -[UP] flip: 11185, stem: 4992, fault:1976. flip_cnt: 7, stem_cnt: 1476, fault_cnt:2079 -[UP] flip: 8331, stem: 5592, fault:1976. flip_cnt: 7, stem_cnt: 1476, fault_cnt:2075 -[UP] flip: 3139, stem: 5612, fault:1976. flip_cnt: 3, stem_cnt: 1476, fault_cnt:2071 -[UP] flip: 0, stem: 5532, fault:1976. flip_cnt: 0, stem_cnt: 1476, fault_cnt:2071 -[UP] flip: 9360, stem: 6312, fault:1976. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2068 -[UP] flip: 5918, stem: 6272, fault:1957. flip_cnt: 5, stem_cnt: 1476, fault_cnt:2064 -[UP] flip: 2087, stem: 5533, fault:1938. flip_cnt: 2, stem_cnt: 1475, fault_cnt:2062 -[UP] flip: 4185, stem: 6654, fault:1938. flip_cnt: 4, stem_cnt: 1474, fault_cnt:2060 -[UP] flip: 6194, stem: 6974, fault:1938. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2055 -[UP] flip: 4729, stem: 7034, fault:1938. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2047 -[UP] flip: 8017, stem: 7814, fault:1938. flip_cnt: 7, stem_cnt: 1474, fault_cnt:2042 -[UP] flip: 5095, stem: 7674, fault:1938. flip_cnt: 5, stem_cnt: 1474, fault_cnt:2040 -[UP] flip: 2268, stem: 8015, fault:1938. flip_cnt: 2, stem_cnt: 1473, fault_cnt:2037 -[UP] flip: 0, stem: 8116, fault:1938. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2037 -[UP] flip: 0, stem: 8276, fault:1938. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2037 -[UP] flip: 0, stem: 7977, fault:1938. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2037 -[UP] flip: 9880, stem: 8357, fault:1938. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2034 -[UP] flip: 6163, stem: 8717, fault:1938. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2032 -[UP] flip: 4595, stem: 8098, fault:1805. flip_cnt: 4, stem_cnt: 1470, fault_cnt:2020 -[UP] flip: 0, stem: 8858, fault:1805. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2020 -[UP] flip: 2745, stem: 8259, fault:1805. flip_cnt: 2, stem_cnt: 1469, fault_cnt:2019 -[UP] flip: 0, stem: 8479, fault:1805. flip_cnt: 0, stem_cnt: 1469, fault_cnt:2019 -[UP] flip: 0, stem: 8200, fault:1805. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2019 -[UP] flip: 0, stem: 8120, fault:1805. flip_cnt: 0, stem_cnt: 1468, fault_cnt:2019 -[UP] flip: 0, stem: 8098, fault:1805. flip_cnt: 0, stem_cnt: 1470, fault_cnt:2019 -[UP] flip: 0, stem: 8277, fault:1805. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2019 -[UP] flip: 5461, stem: 6077, fault:1805. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2017 -[UP] flip: 4343, stem: 6577, fault:1786. flip_cnt: 4, stem_cnt: 1471, fault_cnt:2013 -[UP] flip: 2545, stem: 6318, fault:1786. flip_cnt: 2, stem_cnt: 1470, fault_cnt:2010 -[UP] flip: 4053, stem: 5317, fault:1786. flip_cnt: 4, stem_cnt: 1471, fault_cnt:2013 -[UP] flip: 8295, stem: 5498, fault:1767. flip_cnt: 7, stem_cnt: 1470, fault_cnt:2040 -[UP] flip: 0, stem: 5777, fault:1767. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2040 -[UP] flip: 0, stem: 7017, fault:1767. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2040 -[UP] flip: 1930, stem: 6837, fault:1767. flip_cnt: 2, stem_cnt: 1471, fault_cnt:2037 -[UP] flip: 0, stem: 7317, fault:1767. flip_cnt: 0, stem_cnt: 1471, fault_cnt:2037 -[UP] flip: 6906, stem: 7517, fault:1767. flip_cnt: 5, stem_cnt: 1471, fault_cnt:2035 -[UP] flip: 0, stem: 6336, fault:1767. flip_cnt: 0, stem_cnt: 1472, fault_cnt:2003 -[UP] flip: 9431, stem: 7076, fault:1767. flip_cnt: 5, stem_cnt: 1472, fault_cnt:2014 -[UP] flip: 0, stem: 6415, fault:1767. flip_cnt: 0, stem_cnt: 1473, fault_cnt:2014 -[UP] flip: 1950, stem: 7236, fault:1767. flip_cnt: 2, stem_cnt: 1472, fault_cnt:2011 -[UP] flip: 8375, stem: 7396, fault:1767. flip_cnt: 7, stem_cnt: 1472, fault_cnt:2007 -[UP] flip: 0, stem: 7434, fault:1786. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1968 -[UP] flip: 0, stem: 7734, fault:1786. flip_cnt: 0, stem_cnt: 1474, fault_cnt:1968 -[UP] flip: 8562, stem: 7334, fault:1786. flip_cnt: 7, stem_cnt: 1474, fault_cnt:1964 -[UP] flip: 11668, stem: 6834, fault:1729. flip_cnt: 7, stem_cnt: 1474, fault_cnt:1958 -[UP] flip: 0, stem: 6955, fault:1729. flip_cnt: 0, stem_cnt: 1473, fault_cnt:1958 -[UP] flip: 2710, stem: 7195, fault:1748. flip_cnt: 2, stem_cnt: 1473, fault_cnt:1980 -[UP] flip: 11911, stem: 8155, fault:1748. flip_cnt: 7, stem_cnt: 1473, fault_cnt:1976 -[UP] flip: 8763, stem: 7815, fault:1710. flip_cnt: 7, stem_cnt: 1473, fault_cnt:1972 -[UP] flip: 0, stem: 7056, fault:1710. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1966 -[UP] flip: 8569, stem: 7916, fault:1710. flip_cnt: 7, stem_cnt: 1472, fault_cnt:1962 -[UP] flip: 0, stem: 7936, fault:1710. flip_cnt: 0, stem_cnt: 1472, fault_cnt:1962 -[UP] flip: 6502, stem: 8116, fault:1710. flip_cnt: 5, stem_cnt: 1472, fault_cnt:1960 -[UP] flip: 0, stem: 7672, fault:1710. flip_cnt: 0, stem_cnt: 1476, fault_cnt:1960 -[UP] flip: 8759, stem: 8071, fault:1786. flip_cnt: 7, stem_cnt: 1477, fault_cnt:2019 -[UP] flip: 4628, stem: 8232, fault:1710. flip_cnt: 4, stem_cnt: 1476, fault_cnt:1963 -[UP] flip: 8874, stem: 8312, fault:1691. flip_cnt: 7, stem_cnt: 1476, fault_cnt:1969 -[UP] flip: 0, stem: 7992, fault:1691. flip_cnt: 0, stem_cnt: 1476, fault_cnt:1969 -[UP] flip: 0, stem: 7912, fault:1691. flip_cnt: 0, stem_cnt: 1476, fault_cnt:1969 -[UP] flip: 4470, stem: 7992, fault:1691. flip_cnt: 4, stem_cnt: 1476, fault_cnt:1967 -[UP] flip: 0, stem: 8152, fault:1691. flip_cnt: 0, stem_cnt: 1476, fault_cnt:1975 -[UP] flip: 5273, stem: 7430, fault:1691. flip_cnt: 4, stem_cnt: 1478, fault_cnt:1978 -[UP] flip: 5385, stem: 6650, fault:1748. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2046 -[UP] flip: 1994, stem: 6510, fault:1767. flip_cnt: 2, stem_cnt: 1478, fault_cnt:2103 -[UP] flip: 6698, stem: 6630, fault:1767. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2101 -[UP] flip: 4609, stem: 6710, fault:1767. flip_cnt: 4, stem_cnt: 1478, fault_cnt:2099 -[UP] flip: 5128, stem: 6610, fault:1767. flip_cnt: 4, stem_cnt: 1478, fault_cnt:2102 -[UP] flip: 4733, stem: 6831, fault:1767. flip_cnt: 4, stem_cnt: 1477, fault_cnt:2103 -[UP] flip: 2588, stem: 6992, fault:1748. flip_cnt: 2, stem_cnt: 1476, fault_cnt:2097 -[UP] flip: 5249, stem: 6270, fault:1748. flip_cnt: 5, stem_cnt: 1478, fault_cnt:2099 -[UP] flip: 8134, stem: 6472, fault:1748. flip_cnt: 7, stem_cnt: 1476, fault_cnt:2095 -[UP] flip: 8180, stem: 3789, fault:1767. flip_cnt: 4, stem_cnt: 1479, fault_cnt:2100 -[UP] flip: 6441, stem: 3909, fault:1767. flip_cnt: 5, stem_cnt: 1479, fault_cnt:2101 -[UP] flip: 0, stem: 4209, fault:1748. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2071 -[UP] flip: 7429, stem: 2988, fault:1748. flip_cnt: 7, stem_cnt: 1480, fault_cnt:2069 -[UP] flip: 0, stem: 2808, fault:1748. flip_cnt: 0, stem_cnt: 1480, fault_cnt:2069 -[UP] flip: 0, stem: 2469, fault:1748. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2069 -[UP] flip: 1635, stem: 2289, fault:1748. flip_cnt: 2, stem_cnt: 1479, fault_cnt:2066 -[UP] flip: 0, stem: 3349, fault:1748. flip_cnt: 0, stem_cnt: 1479, fault_cnt:2066 -[UP] flip: 6453, stem: 3387, fault:1748. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2068 -[UP] flip: 0, stem: 3647, fault:1767. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2103 -[UP] flip: 3522, stem: 4347, fault:1767. flip_cnt: 3, stem_cnt: 1481, fault_cnt:2102 -[UP] flip: 6458, stem: 4347, fault:1767. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2100 -[UP] flip: 0, stem: 2447, fault:1748. flip_cnt: 0, stem_cnt: 1481, fault_cnt:2065 -[UP] flip: 849, stem: 2407, fault:1748. flip_cnt: 1, stem_cnt: 1481, fault_cnt:2062 -[UP] flip: 4451, stem: 3687, fault:1748. flip_cnt: 4, stem_cnt: 1481, fault_cnt:2060 -[UP] flip: 6204, stem: 3145, fault:1767. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2117 -[UP] flip: 1944, stem: 2926, fault:1767. flip_cnt: 2, stem_cnt: 1482, fault_cnt:2114 -[UP] flip: 6778, stem: 905, fault:1767. flip_cnt: 5, stem_cnt: 1483, fault_cnt:2116 -[UP] flip: 8201, stem: 2145, fault:1767. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2110 -[UP] flip: 9760, stem: 3387, fault:1767. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2105 -[UP] flip: 9765, stem: 1064, fault:1767. flip_cnt: 5, stem_cnt: 1484, fault_cnt:2120 -[UP] flip: 2613, stem: 3047, fault:1767. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2121 -[UP] flip: 6269, stem: 3107, fault:1767. flip_cnt: 5, stem_cnt: 1481, fault_cnt:2115 -[UP] flip: 2342, stem: 4267, fault:1767. flip_cnt: 2, stem_cnt: 1481, fault_cnt:2137 -[UP] flip: 2614, stem: 2725, fault:1767. flip_cnt: 2, stem_cnt: 1483, fault_cnt:2140 -[UP] flip: 0, stem: 2805, fault:1767. flip_cnt: 0, stem_cnt: 1483, fault_cnt:2144 -[UP] flip: 9148, stem: 2985, fault:1767. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2140 -[UP] flip: 12622, stem: 2085, fault:1767. flip_cnt: 7, stem_cnt: 1483, fault_cnt:2117 -[UP] flip: 0, stem: 3686, fault:1767. flip_cnt: 0, stem_cnt: 1482, fault_cnt:2117 -[UP] flip: 8972, stem: 2104, fault:1767. flip_cnt: 4, stem_cnt: 1484, fault_cnt:2120 -[UP] flip: 0, stem: 1724, fault:1767. flip_cnt: 0, stem_cnt: 1484, fault_cnt:2139 -[UP] flip: 10550, stem: 702, fault:1786. flip_cnt: 5, stem_cnt: 1486, fault_cnt:2147 -FIND SOLUTION! -[SOL] flip: 0, stem: 0, fault:1786. flip_cnt: 0, stem_cnt: 1488, fault_cnt:2171 -coverage: 0.9377 pattern: 6 before: 399 now: 305 -WRONG-SA: 6156 -checking valid circuit ... result: 0. +[UP] propagate: 88, stem: 968, fault:770. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 168, stem: 1338, fault:1155. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 248, stem: 1708, fault:1540. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 328, stem: 2078, fault:1925. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 408, stem: 2448, fault:2310. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 488, stem: 2818, fault:2695. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 568, stem: 3188, fault:3080. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 648, stem: 3558, fault:3465. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 728, stem: 3928, fault:3850. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 808, stem: 4298, fault:4235. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 888, stem: 4668, fault:4620. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 968, stem: 5038, fault:5005. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 1048, stem: 5408, fault:5390. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 1128, stem: 5778, fault:5775. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 1208, stem: 6148, fault:6160. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 1288, stem: 6518, fault:6545. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 1368, stem: 6888, fault:6930. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 1448, stem: 7258, fault:7315. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 1528, stem: 7628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 1608, stem: 7998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 1688, stem: 8368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 1768, stem: 8738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 1848, stem: 9108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 1928, stem: 9478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 2008, stem: 9848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 2088, stem: 10218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 2168, stem: 10588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 2248, stem: 10958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 2328, stem: 11328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 2408, stem: 11698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 2488, stem: 12068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 2568, stem: 12438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 2648, stem: 12808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 2728, stem: 13178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 2808, stem: 13548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 2888, stem: 13918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 2968, stem: 14288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 3048, stem: 14658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 3128, stem: 15028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 3208, stem: 15398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 3288, stem: 15768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 3368, stem: 16138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 3448, stem: 16508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 3528, stem: 16878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 3608, stem: 17248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 3688, stem: 17618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 3768, stem: 17988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 3848, stem: 18358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 3928, stem: 18728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 4008, stem: 19098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 4088, stem: 19468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 4168, stem: 19838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 4248, stem: 20208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 4328, stem: 20578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 4408, stem: 20948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 4488, stem: 21318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 4568, stem: 21688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 4648, stem: 22058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 4728, stem: 22428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 4808, stem: 22798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 4888, stem: 23168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 4968, stem: 23538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 5048, stem: 23908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 5128, stem: 24278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 5208, stem: 24648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 5288, stem: 25018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 5368, stem: 25388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 5448, stem: 25758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 5528, stem: 26128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 5608, stem: 26498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 5688, stem: 26868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 5768, stem: 27238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 5848, stem: 27608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 5928, stem: 27978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 6008, stem: 28348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 6088, stem: 28718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 6168, stem: 29088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 6248, stem: 29458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 6328, stem: 29828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 6408, stem: 30198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 6488, stem: 30568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 6568, stem: 30938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 6648, stem: 31308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 6728, stem: 31678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 6808, stem: 32048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 6888, stem: 32418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 6968, stem: 32788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 7048, stem: 33158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 7128, stem: 33528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 7208, stem: 33898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 7288, stem: 34268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 7368, stem: 34638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 7448, stem: 35008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 7528, stem: 35378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 7608, stem: 35748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 7688, stem: 36118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 7768, stem: 36488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 7848, stem: 36858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 7928, stem: 37228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 8008, stem: 37598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 8088, stem: 37968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 8168, stem: 38338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 8248, stem: 38708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 8328, stem: 39078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 8408, stem: 39448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 8488, stem: 39818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 8568, stem: 40188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 8648, stem: 40558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 8728, stem: 40928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 8808, stem: 41298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 8888, stem: 41668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 8968, stem: 42038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 9048, stem: 42408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 9128, stem: 42778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 9208, stem: 43148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 9288, stem: 43518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 9368, stem: 43888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 9448, stem: 44258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 9528, stem: 44628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 9608, stem: 44998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 9688, stem: 45368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 9768, stem: 45738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 9848, stem: 46108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 9928, stem: 46478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 10008, stem: 46848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 10088, stem: 47218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 10168, stem: 47588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 10248, stem: 47958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 10328, stem: 48328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 10408, stem: 48698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 10488, stem: 49068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 10568, stem: 49438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 10648, stem: 49808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 10728, stem: 50178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 10808, stem: 50548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 10888, stem: 50918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 10968, stem: 51288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 11048, stem: 51658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 11128, stem: 52028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 11208, stem: 52398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 11288, stem: 52768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 11368, stem: 53138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 11448, stem: 53508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 11528, stem: 53878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 11608, stem: 54248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 11688, stem: 54618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 11768, stem: 54988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 11848, stem: 55358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 11928, stem: 55728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 12008, stem: 56098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 12088, stem: 56468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 12168, stem: 56838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 12248, stem: 57208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 12328, stem: 57578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 12408, stem: 57948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 12488, stem: 58318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 12568, stem: 58688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 12648, stem: 59058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 12728, stem: 59428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 12808, stem: 59798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 12888, stem: 60168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 12968, stem: 60538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 13048, stem: 60908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 13128, stem: 61278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 13208, stem: 61648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 13288, stem: 62018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 13368, stem: 62388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 13448, stem: 62758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 13528, stem: 63128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 13608, stem: 63498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 13688, stem: 63868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 13768, stem: 64238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 13848, stem: 64608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 13928, stem: 64978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 14008, stem: 65348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 14088, stem: 65718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 14168, stem: 66088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 14248, stem: 66458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 14328, stem: 66828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 14408, stem: 67198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 14488, stem: 67568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 14568, stem: 67938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 14648, stem: 68308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 14728, stem: 68678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 14808, stem: 69048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 14888, stem: 69418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 14968, stem: 69788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 15048, stem: 70158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 15128, stem: 70528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 15208, stem: 70898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 15288, stem: 71268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 15368, stem: 71638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 15448, stem: 72008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 15528, stem: 72378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 15608, stem: 72748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 15688, stem: 73118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 15768, stem: 73488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 15848, stem: 73858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 15928, stem: 74228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 16008, stem: 74598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 16088, stem: 74968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 16168, stem: 75338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 16248, stem: 75708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 16328, stem: 76078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 16408, stem: 76448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 16488, stem: 76818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 16568, stem: 77188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 16648, stem: 77558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 16728, stem: 77928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 16808, stem: 78298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 16888, stem: 78668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 16968, stem: 79038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 17048, stem: 79408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 17128, stem: 79778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 17208, stem: 80148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 17288, stem: 80518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 17368, stem: 80888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 17448, stem: 81258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 17528, stem: 81628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 17608, stem: 81998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 17688, stem: 82368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 17768, stem: 82738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 17848, stem: 83108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 17928, stem: 83478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 18008, stem: 83848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 18088, stem: 84218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 18168, stem: 84588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 18248, stem: 84958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 18328, stem: 85328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 18408, stem: 85698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 18488, stem: 86068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 18568, stem: 86438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 18648, stem: 86808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 18728, stem: 87178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 18808, stem: 87548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 18888, stem: 87918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 18968, stem: 88288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 19048, stem: 88658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 19128, stem: 89028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 19208, stem: 89398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 19288, stem: 89768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 19368, stem: 90138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 19448, stem: 90508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 19528, stem: 90878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 19608, stem: 91248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 19688, stem: 91618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 19768, stem: 91988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 19848, stem: 92358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 19928, stem: 92728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 20008, stem: 93098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 20088, stem: 93468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 20168, stem: 93838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 20248, stem: 94208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 20328, stem: 94578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 20408, stem: 94948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 20488, stem: 95318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 20568, stem: 95688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 20648, stem: 96058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 20728, stem: 96428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 20808, stem: 96798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 20888, stem: 97168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 20968, stem: 97538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 21048, stem: 97908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 21128, stem: 98278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 21208, stem: 98648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 21288, stem: 99018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 21368, stem: 99388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 21448, stem: 99758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 21528, stem: 100128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 21608, stem: 100498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 21688, stem: 100868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 21768, stem: 101238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 21848, stem: 101608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 21928, stem: 101978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 22008, stem: 102348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 22088, stem: 102718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 22168, stem: 103088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 22248, stem: 103458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 22328, stem: 103828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 22408, stem: 104198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 22488, stem: 104568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 22568, stem: 104938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 22648, stem: 105308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 22728, stem: 105678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 22808, stem: 106048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 22888, stem: 106418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 22968, stem: 106788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 23048, stem: 107158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 23128, stem: 107528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 23208, stem: 107898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 23288, stem: 108268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 23368, stem: 108638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 23448, stem: 109008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 23528, stem: 109378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 23608, stem: 109748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 23688, stem: 110118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 23768, stem: 110488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 23848, stem: 110858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 23928, stem: 111228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 24008, stem: 111598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 24088, stem: 111968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 24168, stem: 112338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 24248, stem: 112708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 24328, stem: 113078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 24408, stem: 113448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 24488, stem: 113818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 24568, stem: 114188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 24648, stem: 114558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 24728, stem: 114928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 24808, stem: 115298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 24888, stem: 115668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 24968, stem: 116038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 25048, stem: 116408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 25128, stem: 116778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 25208, stem: 117148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 25288, stem: 117518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 25368, stem: 117888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 25448, stem: 118258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 25528, stem: 118628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 25608, stem: 118998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 25688, stem: 119368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 25768, stem: 119738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 25848, stem: 120108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 25928, stem: 120478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 26008, stem: 120848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 26088, stem: 121218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 26168, stem: 121588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 26248, stem: 121958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 26328, stem: 122328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 26408, stem: 122698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 26488, stem: 123068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 26568, stem: 123438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 26648, stem: 123808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 26728, stem: 124178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 26808, stem: 124548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 26888, stem: 124918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 26968, stem: 125288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 27048, stem: 125658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 27128, stem: 126028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 27208, stem: 126398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 27288, stem: 126768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 27368, stem: 127138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 27448, stem: 127508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 27528, stem: 127878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 27608, stem: 128248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 27688, stem: 128618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 27768, stem: 128988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 27848, stem: 129358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 27928, stem: 129728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 28008, stem: 130098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 28088, stem: 130468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 28168, stem: 130838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 28248, stem: 131208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 28328, stem: 131578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 28408, stem: 131948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 28488, stem: 132318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 28568, stem: 132688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 28648, stem: 133058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 28728, stem: 133428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 28808, stem: 133798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 28888, stem: 134168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 28968, stem: 134538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 29048, stem: 134908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 29128, stem: 135278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 29208, stem: 135648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 29288, stem: 136018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 29368, stem: 136388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 29448, stem: 136758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 29528, stem: 137128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 29608, stem: 137498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 29688, stem: 137868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 29768, stem: 138238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 29848, stem: 138608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 29928, stem: 138978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 30008, stem: 139348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 30088, stem: 139718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 30168, stem: 140088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 30248, stem: 140458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 30328, stem: 140828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 30408, stem: 141198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 30488, stem: 141568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 30568, stem: 141938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 30648, stem: 142308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 30728, stem: 142678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 30808, stem: 143048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 30888, stem: 143418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 30968, stem: 143788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 31048, stem: 144158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 31128, stem: 144528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 31208, stem: 144898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 31288, stem: 145268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 31368, stem: 145638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 31448, stem: 146008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 31528, stem: 146378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 31608, stem: 146748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 31688, stem: 147118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 31768, stem: 147488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 31848, stem: 147858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 31928, stem: 148228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 32008, stem: 148598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 32088, stem: 148968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 32168, stem: 149338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 32248, stem: 149708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 32328, stem: 150078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 32408, stem: 150448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 32488, stem: 150818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 32568, stem: 151188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 32648, stem: 151558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 32728, stem: 151928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 32808, stem: 152298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 32888, stem: 152668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 32968, stem: 153038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 33048, stem: 153408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 33128, stem: 153778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 33208, stem: 154148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 33288, stem: 154518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 33368, stem: 154888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 33448, stem: 155258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 33528, stem: 155628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 33608, stem: 155998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 33688, stem: 156368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 33768, stem: 156738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 33848, stem: 157108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 33928, stem: 157478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 34008, stem: 157848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 34088, stem: 158218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 34168, stem: 158588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 34248, stem: 158958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 34328, stem: 159328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 34408, stem: 159698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 34488, stem: 160068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 34568, stem: 160438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 34648, stem: 160808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 34728, stem: 161178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 34808, stem: 161548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 34888, stem: 161918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 34968, stem: 162288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 35048, stem: 162658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 35128, stem: 163028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 35208, stem: 163398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 35288, stem: 163768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 35368, stem: 164138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 35448, stem: 164508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 35528, stem: 164878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 35608, stem: 165248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 35688, stem: 165618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 35768, stem: 165988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 35848, stem: 166358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 35928, stem: 166728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 36008, stem: 167098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 36088, stem: 167468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 36168, stem: 167838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 36248, stem: 168208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 36328, stem: 168578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 36408, stem: 168948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 36488, stem: 169318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 36568, stem: 169688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 36648, stem: 170058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 36728, stem: 170428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 36808, stem: 170798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 36888, stem: 171168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 36968, stem: 171538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 37048, stem: 171908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 37128, stem: 172278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 37208, stem: 172648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 37288, stem: 173018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 37368, stem: 173388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 37448, stem: 173758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 37528, stem: 174128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 37608, stem: 174498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 37688, stem: 174868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 37768, stem: 175238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 37848, stem: 175608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 37928, stem: 175978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 38008, stem: 176348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 38088, stem: 176718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 38168, stem: 177088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 38248, stem: 177458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 38328, stem: 177828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 38408, stem: 178198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 38488, stem: 178568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 38568, stem: 178938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 38648, stem: 179308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 38728, stem: 179678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 38808, stem: 180048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 38888, stem: 180418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 38968, stem: 180788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 39048, stem: 181158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 39128, stem: 181528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 39208, stem: 181898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 39288, stem: 182268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 39368, stem: 182638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 39448, stem: 183008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 39528, stem: 183378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 39608, stem: 183748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 39688, stem: 184118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 39768, stem: 184488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 39848, stem: 184858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 39928, stem: 185228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 40008, stem: 185598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 40088, stem: 185968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 40168, stem: 186338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 40248, stem: 186708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 40328, stem: 187078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 40408, stem: 187448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 40488, stem: 187818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 40568, stem: 188188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 40648, stem: 188558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 40728, stem: 188928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 40808, stem: 189298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 40888, stem: 189668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 40968, stem: 190038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 41048, stem: 190408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 41128, stem: 190778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 41208, stem: 191148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 41288, stem: 191518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 41368, stem: 191888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 41448, stem: 192258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 41528, stem: 192628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 41608, stem: 192998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 41688, stem: 193368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 41768, stem: 193738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 41848, stem: 194108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 41928, stem: 194478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 42008, stem: 194848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 42088, stem: 195218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 42168, stem: 195588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 42248, stem: 195958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 42328, stem: 196328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 42408, stem: 196698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 42488, stem: 197068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 42568, stem: 197438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 42648, stem: 197808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 42728, stem: 198178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 42808, stem: 198548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 42888, stem: 198918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 42968, stem: 199288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 43048, stem: 199658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 43128, stem: 200028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 43208, stem: 200398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 43288, stem: 200768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 43368, stem: 201138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 43448, stem: 201508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 43528, stem: 201878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 43608, stem: 202248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 43688, stem: 202618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 43768, stem: 202988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 43848, stem: 203358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 43928, stem: 203728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 44008, stem: 204098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 44088, stem: 204468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 44168, stem: 204838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 44248, stem: 205208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 44328, stem: 205578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 44408, stem: 205948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 44488, stem: 206318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 44568, stem: 206688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 44648, stem: 207058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 44728, stem: 207428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 44808, stem: 207798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 44888, stem: 208168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 44968, stem: 208538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 45048, stem: 208908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 45128, stem: 209278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 45208, stem: 209648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 45288, stem: 210018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 45368, stem: 210388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 45448, stem: 210758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 45528, stem: 211128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 45608, stem: 211498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 45688, stem: 211868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 45768, stem: 212238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 45848, stem: 212608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 45928, stem: 212978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 46008, stem: 213348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 46088, stem: 213718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 46168, stem: 214088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 46248, stem: 214458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 46328, stem: 214828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 46408, stem: 215198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 46488, stem: 215568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 46568, stem: 215938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 46648, stem: 216308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 46728, stem: 216678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 46808, stem: 217048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 46888, stem: 217418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 46968, stem: 217788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 47048, stem: 218158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 47128, stem: 218528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 47208, stem: 218898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 47288, stem: 219268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 47368, stem: 219638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 47448, stem: 220008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 47528, stem: 220378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 47608, stem: 220748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 47688, stem: 221118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 47768, stem: 221488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 47848, stem: 221858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 47928, stem: 222228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 48008, stem: 222598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 48088, stem: 222968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 48168, stem: 223338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 48248, stem: 223708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 48328, stem: 224078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 48408, stem: 224448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 48488, stem: 224818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 48568, stem: 225188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 48648, stem: 225558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 48728, stem: 225928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 48808, stem: 226298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 48888, stem: 226668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 48968, stem: 227038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 49048, stem: 227408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 49128, stem: 227778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 49208, stem: 228148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 49288, stem: 228518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 49368, stem: 228888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 49448, stem: 229258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 49528, stem: 229628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 49608, stem: 229998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 49688, stem: 230368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 49768, stem: 230738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 49848, stem: 231108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 49928, stem: 231478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 50008, stem: 231848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 50088, stem: 232218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 50168, stem: 232588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 50248, stem: 232958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 50328, stem: 233328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 50408, stem: 233698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 50488, stem: 234068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 50568, stem: 234438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 50648, stem: 234808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 50728, stem: 235178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 50808, stem: 235548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 50888, stem: 235918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 50968, stem: 236288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 51048, stem: 236658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 51128, stem: 237028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 51208, stem: 237398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 51288, stem: 237768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 51368, stem: 238138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 51448, stem: 238508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 51528, stem: 238878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 51608, stem: 239248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 51688, stem: 239618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 51768, stem: 239988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 51848, stem: 240358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 51928, stem: 240728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 52008, stem: 241098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 52088, stem: 241468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 52168, stem: 241838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 52248, stem: 242208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 52328, stem: 242578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 52408, stem: 242948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 52488, stem: 243318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 52568, stem: 243688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 52648, stem: 244058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 52728, stem: 244428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 52808, stem: 244798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 52888, stem: 245168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 52968, stem: 245538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 53048, stem: 245908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 53128, stem: 246278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 53208, stem: 246648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 53288, stem: 247018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 53368, stem: 247388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 53448, stem: 247758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 53528, stem: 248128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 53608, stem: 248498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 53688, stem: 248868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 53768, stem: 249238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 53848, stem: 249608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 53928, stem: 249978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 54008, stem: 250348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 54088, stem: 250718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 54168, stem: 251088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 54248, stem: 251458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 54328, stem: 251828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 54408, stem: 252198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 54488, stem: 252568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 54568, stem: 252938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 54648, stem: 253308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 54728, stem: 253678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 54808, stem: 254048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 54888, stem: 254418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 54968, stem: 254788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 55048, stem: 255158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 55128, stem: 255528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 55208, stem: 255898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 55288, stem: 256268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 55368, stem: 256638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 55448, stem: 257008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 55528, stem: 257378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 55608, stem: 257748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 55688, stem: 258118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 55768, stem: 258488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 55848, stem: 258858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 55928, stem: 259228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 56008, stem: 259598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 56088, stem: 259968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 56168, stem: 260338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 56248, stem: 260708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 56328, stem: 261078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 56408, stem: 261448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 56488, stem: 261818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 56568, stem: 262188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 56648, stem: 262558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 56728, stem: 262928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 56808, stem: 263298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 56888, stem: 263668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 56968, stem: 264038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 57048, stem: 264408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 57128, stem: 264778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 57208, stem: 265148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 57288, stem: 265518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 57368, stem: 265888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 57448, stem: 266258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 57528, stem: 266628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 57608, stem: 266998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 57688, stem: 267368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 57768, stem: 267738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 57848, stem: 268108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 57928, stem: 268478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 58008, stem: 268848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 58088, stem: 269218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 58168, stem: 269588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 58248, stem: 269958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 58328, stem: 270328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 58408, stem: 270698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 58488, stem: 271068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 58568, stem: 271438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 58648, stem: 271808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 58728, stem: 272178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 58808, stem: 272548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 58888, stem: 272918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 58968, stem: 273288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 59048, stem: 273658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 59128, stem: 274028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 59208, stem: 274398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 59288, stem: 274768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 59368, stem: 275138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 59448, stem: 275508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 59528, stem: 275878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 59608, stem: 276248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 59688, stem: 276618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 59768, stem: 276988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 59848, stem: 277358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 59928, stem: 277728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 60008, stem: 278098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 60088, stem: 278468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 60168, stem: 278838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 60248, stem: 279208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 60328, stem: 279578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 60408, stem: 279948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 60488, stem: 280318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 60568, stem: 280688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 60648, stem: 281058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 60728, stem: 281428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 60808, stem: 281798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 60888, stem: 282168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 60968, stem: 282538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 61048, stem: 282908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 61128, stem: 283278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 61208, stem: 283648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 61288, stem: 284018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 61368, stem: 284388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 61448, stem: 284758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 61528, stem: 285128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 61608, stem: 285498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 61688, stem: 285868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 61768, stem: 286238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 61848, stem: 286608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 61928, stem: 286978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 62008, stem: 287348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 62088, stem: 287718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 62168, stem: 288088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 62248, stem: 288458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 62328, stem: 288828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 62408, stem: 289198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 62488, stem: 289568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 62568, stem: 289938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 62648, stem: 290308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 62728, stem: 290678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 62808, stem: 291048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 62888, stem: 291418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 62968, stem: 291788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 63048, stem: 292158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 63128, stem: 292528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 63208, stem: 292898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 63288, stem: 293268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 63368, stem: 293638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 63448, stem: 294008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 63528, stem: 294378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 63608, stem: 294748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 63688, stem: 295118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 63768, stem: 295488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 63848, stem: 295858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 63928, stem: 296228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 64008, stem: 296598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 64088, stem: 296968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 64168, stem: 297338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 64248, stem: 297708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 64328, stem: 298078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 64408, stem: 298448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 64488, stem: 298818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 64568, stem: 299188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 64648, stem: 299558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 64728, stem: 299928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 64808, stem: 300298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 64888, stem: 300668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 64968, stem: 301038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 65048, stem: 301408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 65128, stem: 301778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 65208, stem: 302148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 65288, stem: 302518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 65368, stem: 302888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 65448, stem: 303258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 65528, stem: 303628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 65608, stem: 303998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 65688, stem: 304368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 65768, stem: 304738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 65848, stem: 305108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 65928, stem: 305478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 66008, stem: 305848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 66088, stem: 306218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 66168, stem: 306588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 66248, stem: 306958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 66328, stem: 307328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 66408, stem: 307698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 66488, stem: 308068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 66568, stem: 308438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 66648, stem: 308808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 66728, stem: 309178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 66808, stem: 309548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 66888, stem: 309918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 66968, stem: 310288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 67048, stem: 310658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 67128, stem: 311028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 67208, stem: 311398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 67288, stem: 311768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 67368, stem: 312138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 67448, stem: 312508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 67528, stem: 312878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 67608, stem: 313248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 67688, stem: 313618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 67768, stem: 313988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 67848, stem: 314358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 67928, stem: 314728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 68008, stem: 315098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 68088, stem: 315468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 68168, stem: 315838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 68248, stem: 316208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 68328, stem: 316578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 68408, stem: 316948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 68488, stem: 317318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 68568, stem: 317688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 68648, stem: 318058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 68728, stem: 318428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 68808, stem: 318798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 68888, stem: 319168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 68968, stem: 319538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 69048, stem: 319908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 69128, stem: 320278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 69208, stem: 320648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 69288, stem: 321018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 69368, stem: 321388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 69448, stem: 321758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 69528, stem: 322128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 69608, stem: 322498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 69688, stem: 322868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 69768, stem: 323238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 69848, stem: 323608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 69928, stem: 323978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 70008, stem: 324348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 70088, stem: 324718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 70168, stem: 325088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 70248, stem: 325458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 70328, stem: 325828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 70408, stem: 326198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 70488, stem: 326568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 70568, stem: 326938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 70648, stem: 327308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 70728, stem: 327678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 70808, stem: 328048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 70888, stem: 328418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 70968, stem: 328788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 71048, stem: 329158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 71128, stem: 329528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 71208, stem: 329898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 71288, stem: 330268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 71368, stem: 330638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 71448, stem: 331008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 71528, stem: 331378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 71608, stem: 331748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 71688, stem: 332118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 71768, stem: 332488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 71848, stem: 332858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 71928, stem: 333228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 72008, stem: 333598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 72088, stem: 333968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 72168, stem: 334338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 72248, stem: 334708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 72328, stem: 335078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 72408, stem: 335448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 72488, stem: 335818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 72568, stem: 336188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 72648, stem: 336558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 72728, stem: 336928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 72808, stem: 337298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 72888, stem: 337668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 72968, stem: 338038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 73048, stem: 338408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 73128, stem: 338778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 73208, stem: 339148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 73288, stem: 339518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 73368, stem: 339888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 73448, stem: 340258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 73528, stem: 340628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 73608, stem: 340998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 73688, stem: 341368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 73768, stem: 341738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 73848, stem: 342108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 73928, stem: 342478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 74008, stem: 342848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 74088, stem: 343218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 74168, stem: 343588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 74248, stem: 343958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 74328, stem: 344328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 74408, stem: 344698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 74488, stem: 345068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 74568, stem: 345438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 74648, stem: 345808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 74728, stem: 346178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 74808, stem: 346548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 74888, stem: 346918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 74968, stem: 347288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 75048, stem: 347658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 75128, stem: 348028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 75208, stem: 348398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 75288, stem: 348768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 75368, stem: 349138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 75448, stem: 349508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 75528, stem: 349878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 75608, stem: 350248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 75688, stem: 350618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 75768, stem: 350988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 75848, stem: 351358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 75928, stem: 351728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 76008, stem: 352098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 76088, stem: 352468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 76168, stem: 352838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 76248, stem: 353208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 76328, stem: 353578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 76408, stem: 353948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 76488, stem: 354318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 76568, stem: 354688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 76648, stem: 355058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 76728, stem: 355428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 76808, stem: 355798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 76888, stem: 356168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 76968, stem: 356538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 77048, stem: 356908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 77128, stem: 357278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 77208, stem: 357648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 77288, stem: 358018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 77368, stem: 358388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 77448, stem: 358758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 77528, stem: 359128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 77608, stem: 359498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 77688, stem: 359868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 77768, stem: 360238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 77848, stem: 360608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 77928, stem: 360978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 78008, stem: 361348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 78088, stem: 361718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 78168, stem: 362088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 78248, stem: 362458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 78328, stem: 362828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 78408, stem: 363198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 78488, stem: 363568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 78568, stem: 363938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 78648, stem: 364308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 78728, stem: 364678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 78808, stem: 365048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 78888, stem: 365418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 78968, stem: 365788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 79048, stem: 366158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 79128, stem: 366528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 79208, stem: 366898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 79288, stem: 367268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 79368, stem: 367638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 79448, stem: 368008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 79528, stem: 368378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 79608, stem: 368748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 79688, stem: 369118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 79768, stem: 369488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 79848, stem: 369858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 79928, stem: 370228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 80008, stem: 370598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 80088, stem: 370968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 80168, stem: 371338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 80248, stem: 371708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 80328, stem: 372078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 80408, stem: 372448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 80488, stem: 372818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 80568, stem: 373188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 80648, stem: 373558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 80728, stem: 373928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 80808, stem: 374298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 80888, stem: 374668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 80968, stem: 375038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 81048, stem: 375408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 81128, stem: 375778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 81208, stem: 376148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 81288, stem: 376518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 81368, stem: 376888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 81448, stem: 377258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 81528, stem: 377628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 81608, stem: 377998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 81688, stem: 378368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 81768, stem: 378738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 81848, stem: 379108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 81928, stem: 379478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 82008, stem: 379848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 82088, stem: 380218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 82168, stem: 380588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 82248, stem: 380958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 82328, stem: 381328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 82408, stem: 381698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 82488, stem: 382068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 82568, stem: 382438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 82648, stem: 382808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 82728, stem: 383178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 82808, stem: 383548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 82888, stem: 383918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 82968, stem: 384288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 83048, stem: 384658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 83128, stem: 385028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 83208, stem: 385398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 83288, stem: 385768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 83368, stem: 386138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 83448, stem: 386508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 83528, stem: 386878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 83608, stem: 387248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 83688, stem: 387618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 83768, stem: 387988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 83848, stem: 388358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 83928, stem: 388728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 84008, stem: 389098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 84088, stem: 389468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 84168, stem: 389838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 84248, stem: 390208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 84328, stem: 390578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 84408, stem: 390948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 84488, stem: 391318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 84568, stem: 391688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 84648, stem: 392058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 84728, stem: 392428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 84808, stem: 392798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 84888, stem: 393168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 84968, stem: 393538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 85048, stem: 393908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 85128, stem: 394278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 85208, stem: 394648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 85288, stem: 395018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 85368, stem: 395388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 85448, stem: 395758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 85528, stem: 396128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 85608, stem: 396498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 85688, stem: 396868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 85768, stem: 397238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 85848, stem: 397608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 85928, stem: 397978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 86008, stem: 398348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 86088, stem: 398718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 86168, stem: 399088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 86248, stem: 399458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 86328, stem: 399828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 86408, stem: 400198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 86488, stem: 400568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 86568, stem: 400938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 86648, stem: 401308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 86728, stem: 401678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 86808, stem: 402048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 86888, stem: 402418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 86968, stem: 402788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 87048, stem: 403158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 87128, stem: 403528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 87208, stem: 403898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 87288, stem: 404268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 87368, stem: 404638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 87448, stem: 405008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 87528, stem: 405378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 87608, stem: 405748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 87688, stem: 406118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 87768, stem: 406488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 87848, stem: 406858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 87928, stem: 407228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 88008, stem: 407598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 88088, stem: 407968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 88168, stem: 408338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 88248, stem: 408708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 88328, stem: 409078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 88408, stem: 409448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 88488, stem: 409818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 88568, stem: 410188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 88648, stem: 410558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 88728, stem: 410928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 88808, stem: 411298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 88888, stem: 411668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 88968, stem: 412038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 89048, stem: 412408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 89128, stem: 412778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 89208, stem: 413148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 89288, stem: 413518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 89368, stem: 413888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 89448, stem: 414258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 89528, stem: 414628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 89608, stem: 414998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 89688, stem: 415368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 89768, stem: 415738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 89848, stem: 416108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 89928, stem: 416478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 90008, stem: 416848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 90088, stem: 417218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 90168, stem: 417588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 90248, stem: 417958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 90328, stem: 418328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 90408, stem: 418698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 90488, stem: 419068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 90568, stem: 419438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 90648, stem: 419808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 90728, stem: 420178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 90808, stem: 420548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 90888, stem: 420918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 90968, stem: 421288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 91048, stem: 421658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 91128, stem: 422028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 91208, stem: 422398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 91288, stem: 422768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 91368, stem: 423138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 91448, stem: 423508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 91528, stem: 423878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 91608, stem: 424248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 91688, stem: 424618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 91768, stem: 424988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 91848, stem: 425358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 91928, stem: 425728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 92008, stem: 426098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 92088, stem: 426468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 92168, stem: 426838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 92248, stem: 427208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 92328, stem: 427578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 92408, stem: 427948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 92488, stem: 428318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 92568, stem: 428688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 92648, stem: 429058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 92728, stem: 429428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 92808, stem: 429798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 92888, stem: 430168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 92968, stem: 430538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 93048, stem: 430908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 93128, stem: 431278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 93208, stem: 431648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 93288, stem: 432018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 93368, stem: 432388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 93448, stem: 432758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 93528, stem: 433128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 93608, stem: 433498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 93688, stem: 433868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 93768, stem: 434238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 93848, stem: 434608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 93928, stem: 434978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 94008, stem: 435348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 94088, stem: 435718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 94168, stem: 436088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 94248, stem: 436458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 94328, stem: 436828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 94408, stem: 437198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 94488, stem: 437568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 94568, stem: 437938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 94648, stem: 438308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 94728, stem: 438678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 94808, stem: 439048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 94888, stem: 439418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 94968, stem: 439788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 95048, stem: 440158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 95128, stem: 440528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 95208, stem: 440898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 95288, stem: 441268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 95368, stem: 441638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 95448, stem: 442008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 95528, stem: 442378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 95608, stem: 442748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 95688, stem: 443118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 95768, stem: 443488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 95848, stem: 443858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 95928, stem: 444228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 96008, stem: 444598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 96088, stem: 444968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 96168, stem: 445338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 96248, stem: 445708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 96328, stem: 446078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 96408, stem: 446448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 96488, stem: 446818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 96568, stem: 447188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 96648, stem: 447558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 96728, stem: 447928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 96808, stem: 448298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 96888, stem: 448668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 96968, stem: 449038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 97048, stem: 449408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 97128, stem: 449778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 97208, stem: 450148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 97288, stem: 450518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 97368, stem: 450888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 97448, stem: 451258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 97528, stem: 451628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 97608, stem: 451998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 97688, stem: 452368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 97768, stem: 452738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 97848, stem: 453108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 97928, stem: 453478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 98008, stem: 453848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 98088, stem: 454218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 98168, stem: 454588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 98248, stem: 454958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 98328, stem: 455328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 98408, stem: 455698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 98488, stem: 456068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 98568, stem: 456438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 98648, stem: 456808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 98728, stem: 457178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 98808, stem: 457548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 98888, stem: 457918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 98968, stem: 458288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 99048, stem: 458658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 99128, stem: 459028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 99208, stem: 459398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 99288, stem: 459768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 99368, stem: 460138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 99448, stem: 460508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 99528, stem: 460878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 99608, stem: 461248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 99688, stem: 461618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 99768, stem: 461988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 99848, stem: 462358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 99928, stem: 462728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 100008, stem: 463098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 100088, stem: 463468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 100168, stem: 463838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 100248, stem: 464208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 100328, stem: 464578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 100408, stem: 464948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 100488, stem: 465318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 100568, stem: 465688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 100648, stem: 466058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 100728, stem: 466428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 100808, stem: 466798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 100888, stem: 467168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 100968, stem: 467538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 101048, stem: 467908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 101128, stem: 468278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 101208, stem: 468648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 101288, stem: 469018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 101368, stem: 469388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 101448, stem: 469758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 101528, stem: 470128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 101608, stem: 470498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 101688, stem: 470868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 101768, stem: 471238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 101848, stem: 471608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 101928, stem: 471978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 102008, stem: 472348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 102088, stem: 472718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 102168, stem: 473088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 102248, stem: 473458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 102328, stem: 473828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 102408, stem: 474198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 102488, stem: 474568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 102568, stem: 474938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 102648, stem: 475308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 102728, stem: 475678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 102808, stem: 476048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 102888, stem: 476418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 102968, stem: 476788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 103048, stem: 477158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 103128, stem: 477528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 103208, stem: 477898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 103288, stem: 478268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 103368, stem: 478638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 103448, stem: 479008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 103528, stem: 479378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 103608, stem: 479748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 103688, stem: 480118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 103768, stem: 480488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 103848, stem: 480858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 103928, stem: 481228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 104008, stem: 481598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 104088, stem: 481968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 104168, stem: 482338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 104248, stem: 482708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 104328, stem: 483078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 104408, stem: 483448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 104488, stem: 483818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 104568, stem: 484188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 104648, stem: 484558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 104728, stem: 484928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 104808, stem: 485298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 104888, stem: 485668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 104968, stem: 486038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 105048, stem: 486408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 105128, stem: 486778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 105208, stem: 487148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 105288, stem: 487518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 105368, stem: 487888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 105448, stem: 488258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 105528, stem: 488628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 105608, stem: 488998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 105688, stem: 489368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 105768, stem: 489738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 105848, stem: 490108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 105928, stem: 490478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 106008, stem: 490848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 106088, stem: 491218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 106168, stem: 491588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 106248, stem: 491958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 106328, stem: 492328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 106408, stem: 492698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 106488, stem: 493068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 106568, stem: 493438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 106648, stem: 493808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 106728, stem: 494178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 106808, stem: 494548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 106888, stem: 494918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 106968, stem: 495288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 107048, stem: 495658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 107128, stem: 496028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 107208, stem: 496398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 107288, stem: 496768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 107368, stem: 497138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 107448, stem: 497508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 107528, stem: 497878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 107608, stem: 498248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 107688, stem: 498618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 107768, stem: 498988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 107848, stem: 499358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 107928, stem: 499728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 108008, stem: 500098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 108088, stem: 500468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 108168, stem: 500838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 108248, stem: 501208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 108328, stem: 501578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 108408, stem: 501948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 108488, stem: 502318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 108568, stem: 502688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 108648, stem: 503058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 108728, stem: 503428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 108808, stem: 503798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 108888, stem: 504168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 108968, stem: 504538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 109048, stem: 504908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 109128, stem: 505278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 109208, stem: 505648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 109288, stem: 506018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 109368, stem: 506388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 109448, stem: 506758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 109528, stem: 507128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 109608, stem: 507498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 109688, stem: 507868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 109768, stem: 508238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 109848, stem: 508608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 109928, stem: 508978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 110008, stem: 509348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 110088, stem: 509718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 110168, stem: 510088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 110248, stem: 510458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 110328, stem: 510828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 110408, stem: 511198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 110488, stem: 511568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 110568, stem: 511938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 110648, stem: 512308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 110728, stem: 512678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 110808, stem: 513048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 110888, stem: 513418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 110968, stem: 513788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 111048, stem: 514158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 111128, stem: 514528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 111208, stem: 514898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 111288, stem: 515268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 111368, stem: 515638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 111448, stem: 516008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 111528, stem: 516378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 111608, stem: 516748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 111688, stem: 517118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 111768, stem: 517488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 111848, stem: 517858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 111928, stem: 518228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 112008, stem: 518598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 112088, stem: 518968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 112168, stem: 519338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 112248, stem: 519708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 112328, stem: 520078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 112408, stem: 520448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 112488, stem: 520818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 112568, stem: 521188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 112648, stem: 521558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 112728, stem: 521928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 112808, stem: 522298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 112888, stem: 522668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 112968, stem: 523038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 113048, stem: 523408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 113128, stem: 523778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 113208, stem: 524148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 113288, stem: 524518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 113368, stem: 524888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 113448, stem: 525258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 113528, stem: 525628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 113608, stem: 525998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 113688, stem: 526368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 113768, stem: 526738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 113848, stem: 527108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 113928, stem: 527478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 114008, stem: 527848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 114088, stem: 528218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 114168, stem: 528588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 114248, stem: 528958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 114328, stem: 529328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 114408, stem: 529698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 114488, stem: 530068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 114568, stem: 530438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 114648, stem: 530808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 114728, stem: 531178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 114808, stem: 531548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 114888, stem: 531918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 114968, stem: 532288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 115048, stem: 532658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 115128, stem: 533028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 115208, stem: 533398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 115288, stem: 533768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 115368, stem: 534138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 115448, stem: 534508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 115528, stem: 534878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 115608, stem: 535248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 115688, stem: 535618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 115768, stem: 535988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 115848, stem: 536358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 115928, stem: 536728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 116008, stem: 537098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 116088, stem: 537468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 116168, stem: 537838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 116248, stem: 538208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 116328, stem: 538578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 116408, stem: 538948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 116488, stem: 539318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 116568, stem: 539688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 116648, stem: 540058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 116728, stem: 540428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 116808, stem: 540798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 116888, stem: 541168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 116968, stem: 541538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 117048, stem: 541908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 117128, stem: 542278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 117208, stem: 542648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 117288, stem: 543018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 117368, stem: 543388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 117448, stem: 543758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 117528, stem: 544128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 117608, stem: 544498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 117688, stem: 544868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 117768, stem: 545238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 117848, stem: 545608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 117928, stem: 545978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 118008, stem: 546348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 118088, stem: 546718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 118168, stem: 547088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 118248, stem: 547458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 118328, stem: 547828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 118408, stem: 548198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 118488, stem: 548568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 118568, stem: 548938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 118648, stem: 549308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 118728, stem: 549678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 118808, stem: 550048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 118888, stem: 550418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 118968, stem: 550788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 119048, stem: 551158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 119128, stem: 551528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 119208, stem: 551898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 119288, stem: 552268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 119368, stem: 552638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 119448, stem: 553008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 119528, stem: 553378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 119608, stem: 553748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 119688, stem: 554118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 119768, stem: 554488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 119848, stem: 554858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 119928, stem: 555228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 120008, stem: 555598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 120088, stem: 555968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 120168, stem: 556338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 120248, stem: 556708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 120328, stem: 557078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 120408, stem: 557448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 120488, stem: 557818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 120568, stem: 558188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 120648, stem: 558558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 120728, stem: 558928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 120808, stem: 559298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 120888, stem: 559668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 120968, stem: 560038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 121048, stem: 560408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 121128, stem: 560778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 121208, stem: 561148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 121288, stem: 561518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 121368, stem: 561888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 121448, stem: 562258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 121528, stem: 562628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 121608, stem: 562998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 121688, stem: 563368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 121768, stem: 563738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 121848, stem: 564108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 121928, stem: 564478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 122008, stem: 564848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 122088, stem: 565218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 122168, stem: 565588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 122248, stem: 565958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 122328, stem: 566328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 122408, stem: 566698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 122488, stem: 567068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 122568, stem: 567438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 122648, stem: 567808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 122728, stem: 568178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 122808, stem: 568548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 122888, stem: 568918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 122968, stem: 569288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 123048, stem: 569658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 123128, stem: 570028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 123208, stem: 570398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 123288, stem: 570768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 123368, stem: 571138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 123448, stem: 571508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 123528, stem: 571878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 123608, stem: 572248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 123688, stem: 572618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 123768, stem: 572988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 123848, stem: 573358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 123928, stem: 573728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 124008, stem: 574098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 124088, stem: 574468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 124168, stem: 574838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 124248, stem: 575208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 124328, stem: 575578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 124408, stem: 575948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 124488, stem: 576318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 124568, stem: 576688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 124648, stem: 577058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 124728, stem: 577428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 124808, stem: 577798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 124888, stem: 578168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 124968, stem: 578538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 125048, stem: 578908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 125128, stem: 579278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 125208, stem: 579648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 125288, stem: 580018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 125368, stem: 580388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 125448, stem: 580758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 125528, stem: 581128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 125608, stem: 581498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 125688, stem: 581868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 125768, stem: 582238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 125848, stem: 582608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 125928, stem: 582978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 126008, stem: 583348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 126088, stem: 583718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 126168, stem: 584088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 126248, stem: 584458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 126328, stem: 584828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 126408, stem: 585198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 126488, stem: 585568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 126568, stem: 585938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 126648, stem: 586308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 126728, stem: 586678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 126808, stem: 587048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 126888, stem: 587418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 126968, stem: 587788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 127048, stem: 588158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 127128, stem: 588528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 127208, stem: 588898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 127288, stem: 589268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 127368, stem: 589638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 127448, stem: 590008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 127528, stem: 590378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 127608, stem: 590748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 127688, stem: 591118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 127768, stem: 591488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 127848, stem: 591858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 127928, stem: 592228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 128008, stem: 592598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 128088, stem: 592968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 128168, stem: 593338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 128248, stem: 593708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 128328, stem: 594078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 128408, stem: 594448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 128488, stem: 594818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 128568, stem: 595188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 128648, stem: 595558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 128728, stem: 595928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 128808, stem: 596298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 128888, stem: 596668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 128968, stem: 597038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 129048, stem: 597408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 129128, stem: 597778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 129208, stem: 598148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 129288, stem: 598518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 129368, stem: 598888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 129448, stem: 599258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 129528, stem: 599628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 129608, stem: 599998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 129688, stem: 600368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 129768, stem: 600738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 129848, stem: 601108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 129928, stem: 601478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 130008, stem: 601848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 130088, stem: 602218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 130168, stem: 602588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 130248, stem: 602958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 130328, stem: 603328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 130408, stem: 603698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 130488, stem: 604068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 130568, stem: 604438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 130648, stem: 604808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 130728, stem: 605178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 130808, stem: 605548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 130888, stem: 605918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 130968, stem: 606288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 131048, stem: 606658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 131128, stem: 607028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 131208, stem: 607398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 131288, stem: 607768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 131368, stem: 608138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 131448, stem: 608508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 131528, stem: 608878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 131608, stem: 609248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 131688, stem: 609618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 131768, stem: 609988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 131848, stem: 610358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 131928, stem: 610728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 132008, stem: 611098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 132088, stem: 611468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 132168, stem: 611838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 132248, stem: 612208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 132328, stem: 612578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 132408, stem: 612948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 132488, stem: 613318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 132568, stem: 613688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 132648, stem: 614058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 132728, stem: 614428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 132808, stem: 614798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 132888, stem: 615168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 132968, stem: 615538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 133048, stem: 615908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 133128, stem: 616278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 133208, stem: 616648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 133288, stem: 617018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 133368, stem: 617388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 133448, stem: 617758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 133528, stem: 618128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 133608, stem: 618498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 133688, stem: 618868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 133768, stem: 619238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 133848, stem: 619608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 133928, stem: 619978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 134008, stem: 620348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 134088, stem: 620718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 134168, stem: 621088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 134248, stem: 621458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 134328, stem: 621828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 134408, stem: 622198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 134488, stem: 622568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 134568, stem: 622938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 134648, stem: 623308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 134728, stem: 623678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 134808, stem: 624048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 134888, stem: 624418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 134968, stem: 624788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 135048, stem: 625158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 135128, stem: 625528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 135208, stem: 625898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 135288, stem: 626268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 135368, stem: 626638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 135448, stem: 627008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 135528, stem: 627378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 135608, stem: 627748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 135688, stem: 628118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 135768, stem: 628488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 135848, stem: 628858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 135928, stem: 629228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 136008, stem: 629598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 136088, stem: 629968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 136168, stem: 630338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 136248, stem: 630708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 136328, stem: 631078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 136408, stem: 631448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 136488, stem: 631818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 136568, stem: 632188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 136648, stem: 632558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 136728, stem: 632928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 136808, stem: 633298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 136888, stem: 633668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 136968, stem: 634038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 137048, stem: 634408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 137128, stem: 634778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 137208, stem: 635148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 137288, stem: 635518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 137368, stem: 635888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 137448, stem: 636258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 137528, stem: 636628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 137608, stem: 636998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 137688, stem: 637368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 137768, stem: 637738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 137848, stem: 638108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 137928, stem: 638478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 138008, stem: 638848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 138088, stem: 639218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 138168, stem: 639588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 138248, stem: 639958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 138328, stem: 640328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 138408, stem: 640698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 138488, stem: 641068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 138568, stem: 641438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 138648, stem: 641808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 138728, stem: 642178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 138808, stem: 642548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 138888, stem: 642918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 138968, stem: 643288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 139048, stem: 643658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 139128, stem: 644028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 139208, stem: 644398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 139288, stem: 644768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 139368, stem: 645138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 139448, stem: 645508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 139528, stem: 645878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 139608, stem: 646248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 139688, stem: 646618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 139768, stem: 646988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 139848, stem: 647358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 139928, stem: 647728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 140008, stem: 648098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 140088, stem: 648468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 140168, stem: 648838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 140248, stem: 649208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 140328, stem: 649578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 140408, stem: 649948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 140488, stem: 650318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 140568, stem: 650688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 140648, stem: 651058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 140728, stem: 651428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 140808, stem: 651798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 140888, stem: 652168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 140968, stem: 652538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 141048, stem: 652908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 141128, stem: 653278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 141208, stem: 653648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 141288, stem: 654018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 141368, stem: 654388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 141448, stem: 654758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 141528, stem: 655128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 141608, stem: 655498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 141688, stem: 655868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 141768, stem: 656238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 141848, stem: 656608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 141928, stem: 656978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 142008, stem: 657348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 142088, stem: 657718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 142168, stem: 658088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 142248, stem: 658458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 142328, stem: 658828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 142408, stem: 659198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 142488, stem: 659568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 142568, stem: 659938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 142648, stem: 660308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 142728, stem: 660678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 142808, stem: 661048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 142888, stem: 661418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 142968, stem: 661788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 143048, stem: 662158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 143128, stem: 662528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 143208, stem: 662898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 143288, stem: 663268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 143368, stem: 663638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 143448, stem: 664008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 143528, stem: 664378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 143608, stem: 664748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 143688, stem: 665118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 143768, stem: 665488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 143848, stem: 665858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 143928, stem: 666228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 144008, stem: 666598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 144088, stem: 666968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 144168, stem: 667338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 144248, stem: 667708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 144328, stem: 668078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 144408, stem: 668448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 144488, stem: 668818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 144568, stem: 669188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 144648, stem: 669558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 144728, stem: 669928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 144808, stem: 670298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 144888, stem: 670668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 144968, stem: 671038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 145048, stem: 671408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 145128, stem: 671778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 145208, stem: 672148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 145288, stem: 672518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 145368, stem: 672888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 145448, stem: 673258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 145528, stem: 673628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 145608, stem: 673998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 145688, stem: 674368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 145768, stem: 674738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 145848, stem: 675108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 145928, stem: 675478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 146008, stem: 675848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 146088, stem: 676218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 146168, stem: 676588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 146248, stem: 676958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 146328, stem: 677328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 146408, stem: 677698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 146488, stem: 678068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 146568, stem: 678438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 146648, stem: 678808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 146728, stem: 679178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 146808, stem: 679548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 146888, stem: 679918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 146968, stem: 680288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 147048, stem: 680658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 147128, stem: 681028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 147208, stem: 681398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 147288, stem: 681768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 147368, stem: 682138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 147448, stem: 682508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 147528, stem: 682878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 147608, stem: 683248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 147688, stem: 683618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 147768, stem: 683988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 147848, stem: 684358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 147928, stem: 684728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 148008, stem: 685098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 148088, stem: 685468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 148168, stem: 685838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 148248, stem: 686208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 148328, stem: 686578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 148408, stem: 686948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 148488, stem: 687318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 148568, stem: 687688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 148648, stem: 688058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 148728, stem: 688428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 148808, stem: 688798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 148888, stem: 689168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 148968, stem: 689538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 149048, stem: 689908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 149128, stem: 690278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 149208, stem: 690648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 149288, stem: 691018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 149368, stem: 691388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 149448, stem: 691758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 149528, stem: 692128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 149608, stem: 692498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 149688, stem: 692868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 149768, stem: 693238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 149848, stem: 693608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 149928, stem: 693978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 150008, stem: 694348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 150088, stem: 694718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 150168, stem: 695088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 150248, stem: 695458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 150328, stem: 695828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 150408, stem: 696198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 150488, stem: 696568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 150568, stem: 696938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 150648, stem: 697308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 150728, stem: 697678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 150808, stem: 698048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 150888, stem: 698418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 150968, stem: 698788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 151048, stem: 699158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 151128, stem: 699528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 151208, stem: 699898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 151288, stem: 700268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 151368, stem: 700638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 151448, stem: 701008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 151528, stem: 701378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 151608, stem: 701748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 151688, stem: 702118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 151768, stem: 702488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 151848, stem: 702858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 151928, stem: 703228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 152008, stem: 703598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 152088, stem: 703968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 152168, stem: 704338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 152248, stem: 704708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 152328, stem: 705078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 152408, stem: 705448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 152488, stem: 705818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 152568, stem: 706188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 152648, stem: 706558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 152728, stem: 706928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 152808, stem: 707298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 152888, stem: 707668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 152968, stem: 708038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 153048, stem: 708408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 153128, stem: 708778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 153208, stem: 709148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 153288, stem: 709518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 153368, stem: 709888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 153448, stem: 710258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 153528, stem: 710628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 153608, stem: 710998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 153688, stem: 711368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 153768, stem: 711738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 153848, stem: 712108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 153928, stem: 712478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 154008, stem: 712848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 154088, stem: 713218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 154168, stem: 713588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 154248, stem: 713958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 154328, stem: 714328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 154408, stem: 714698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 154488, stem: 715068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 154568, stem: 715438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 154648, stem: 715808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 154728, stem: 716178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 154808, stem: 716548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 154888, stem: 716918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 154968, stem: 717288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 155048, stem: 717658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 155128, stem: 718028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 155208, stem: 718398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 155288, stem: 718768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 155368, stem: 719138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 155448, stem: 719508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 155528, stem: 719878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 155608, stem: 720248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 155688, stem: 720618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 155768, stem: 720988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 155848, stem: 721358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 155928, stem: 721728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 156008, stem: 722098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 156088, stem: 722468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 156168, stem: 722838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 156248, stem: 723208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 156328, stem: 723578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 156408, stem: 723948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 156488, stem: 724318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 156568, stem: 724688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 156648, stem: 725058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 156728, stem: 725428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 156808, stem: 725798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 156888, stem: 726168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 156968, stem: 726538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 157048, stem: 726908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 157128, stem: 727278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 157208, stem: 727648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 157288, stem: 728018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 157368, stem: 728388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 157448, stem: 728758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 157528, stem: 729128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 157608, stem: 729498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 157688, stem: 729868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 157768, stem: 730238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 157848, stem: 730608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 157928, stem: 730978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 158008, stem: 731348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 158088, stem: 731718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 158168, stem: 732088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 158248, stem: 732458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 158328, stem: 732828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 158408, stem: 733198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 158488, stem: 733568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 158568, stem: 733938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 158648, stem: 734308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 158728, stem: 734678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 158808, stem: 735048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 158888, stem: 735418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 158968, stem: 735788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 159048, stem: 736158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 159128, stem: 736528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 159208, stem: 736898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 159288, stem: 737268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 159368, stem: 737638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 159448, stem: 738008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 159528, stem: 738378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 159608, stem: 738748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 159688, stem: 739118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 159768, stem: 739488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 159848, stem: 739858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 159928, stem: 740228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 160008, stem: 740598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 160088, stem: 740968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 160168, stem: 741338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 160248, stem: 741708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 160328, stem: 742078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 160408, stem: 742448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 160488, stem: 742818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 160568, stem: 743188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 160648, stem: 743558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 160728, stem: 743928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 160808, stem: 744298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 160888, stem: 744668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 160968, stem: 745038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 161048, stem: 745408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 161128, stem: 745778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 161208, stem: 746148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 161288, stem: 746518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 161368, stem: 746888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 161448, stem: 747258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 161528, stem: 747628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 161608, stem: 747998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 161688, stem: 748368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 161768, stem: 748738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 161848, stem: 749108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 161928, stem: 749478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 162008, stem: 749848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 162088, stem: 750218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 162168, stem: 750588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 162248, stem: 750958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 162328, stem: 751328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 162408, stem: 751698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 162488, stem: 752068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 162568, stem: 752438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 162648, stem: 752808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 162728, stem: 753178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 162808, stem: 753548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 162888, stem: 753918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 162968, stem: 754288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 163048, stem: 754658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 163128, stem: 755028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 163208, stem: 755398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 163288, stem: 755768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 163368, stem: 756138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 163448, stem: 756508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 163528, stem: 756878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 163608, stem: 757248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 163688, stem: 757618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 163768, stem: 757988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 163848, stem: 758358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 163928, stem: 758728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 164008, stem: 759098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 164088, stem: 759468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 164168, stem: 759838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 164248, stem: 760208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 164328, stem: 760578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 164408, stem: 760948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 164488, stem: 761318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 164568, stem: 761688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 164648, stem: 762058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 164728, stem: 762428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 164808, stem: 762798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 164888, stem: 763168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 164968, stem: 763538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 165048, stem: 763908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 165128, stem: 764278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 165208, stem: 764648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 165288, stem: 765018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 165368, stem: 765388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 165448, stem: 765758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 165528, stem: 766128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 165608, stem: 766498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 165688, stem: 766868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 165768, stem: 767238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 165848, stem: 767608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 165928, stem: 767978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 166008, stem: 768348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 166088, stem: 768718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 166168, stem: 769088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 166248, stem: 769458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 166328, stem: 769828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 166408, stem: 770198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 166488, stem: 770568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 166568, stem: 770938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 166648, stem: 771308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 166728, stem: 771678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 166808, stem: 772048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 166888, stem: 772418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 166968, stem: 772788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 167048, stem: 773158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 167128, stem: 773528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 167208, stem: 773898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 167288, stem: 774268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 167368, stem: 774638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 167448, stem: 775008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 167528, stem: 775378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 167608, stem: 775748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 167688, stem: 776118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 167768, stem: 776488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 167848, stem: 776858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 167928, stem: 777228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 168008, stem: 777598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 168088, stem: 777968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 168168, stem: 778338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 168248, stem: 778708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 168328, stem: 779078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 168408, stem: 779448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 168488, stem: 779818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 168568, stem: 780188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 168648, stem: 780558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 168728, stem: 780928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 168808, stem: 781298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 168888, stem: 781668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 168968, stem: 782038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 169048, stem: 782408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 169128, stem: 782778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 169208, stem: 783148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 169288, stem: 783518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 169368, stem: 783888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 169448, stem: 784258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 169528, stem: 784628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 169608, stem: 784998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 169688, stem: 785368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 169768, stem: 785738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 169848, stem: 786108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 169928, stem: 786478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 170008, stem: 786848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 170088, stem: 787218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 170168, stem: 787588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 170248, stem: 787958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 170328, stem: 788328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 170408, stem: 788698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 170488, stem: 789068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 170568, stem: 789438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 170648, stem: 789808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 170728, stem: 790178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 170808, stem: 790548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 170888, stem: 790918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 170968, stem: 791288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 171048, stem: 791658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 171128, stem: 792028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 171208, stem: 792398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 171288, stem: 792768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 171368, stem: 793138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 171448, stem: 793508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 171528, stem: 793878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 171608, stem: 794248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 171688, stem: 794618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 171768, stem: 794988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 171848, stem: 795358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 171928, stem: 795728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 172008, stem: 796098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 172088, stem: 796468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 172168, stem: 796838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 172248, stem: 797208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 172328, stem: 797578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 172408, stem: 797948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 172488, stem: 798318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 172568, stem: 798688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 172648, stem: 799058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 172728, stem: 799428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 172808, stem: 799798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 172888, stem: 800168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 172968, stem: 800538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 173048, stem: 800908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 173128, stem: 801278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 173208, stem: 801648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 173288, stem: 802018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 173368, stem: 802388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 173448, stem: 802758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 173528, stem: 803128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 173608, stem: 803498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 173688, stem: 803868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 173768, stem: 804238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 173848, stem: 804608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 173928, stem: 804978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 174008, stem: 805348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 174088, stem: 805718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 174168, stem: 806088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 174248, stem: 806458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 174328, stem: 806828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 174408, stem: 807198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 174488, stem: 807568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 174568, stem: 807938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 174648, stem: 808308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 174728, stem: 808678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 174808, stem: 809048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 174888, stem: 809418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 174968, stem: 809788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 175048, stem: 810158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 175128, stem: 810528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 175208, stem: 810898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 175288, stem: 811268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 175368, stem: 811638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 175448, stem: 812008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 175528, stem: 812378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 175608, stem: 812748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 175688, stem: 813118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 175768, stem: 813488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 175848, stem: 813858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 175928, stem: 814228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 176008, stem: 814598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 176088, stem: 814968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 176168, stem: 815338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 176248, stem: 815708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 176328, stem: 816078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 176408, stem: 816448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 176488, stem: 816818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 176568, stem: 817188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 176648, stem: 817558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 176728, stem: 817928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 176808, stem: 818298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 176888, stem: 818668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 176968, stem: 819038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 177048, stem: 819408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 177128, stem: 819778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 177208, stem: 820148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 177288, stem: 820518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 177368, stem: 820888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 177448, stem: 821258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 177528, stem: 821628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 177608, stem: 821998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 177688, stem: 822368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 177768, stem: 822738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 177848, stem: 823108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 177928, stem: 823478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 178008, stem: 823848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 178088, stem: 824218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 178168, stem: 824588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 178248, stem: 824958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 178328, stem: 825328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 178408, stem: 825698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 178488, stem: 826068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 178568, stem: 826438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 178648, stem: 826808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 178728, stem: 827178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 178808, stem: 827548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 178888, stem: 827918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 178968, stem: 828288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 179048, stem: 828658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 179128, stem: 829028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 179208, stem: 829398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 179288, stem: 829768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 179368, stem: 830138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 179448, stem: 830508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 179528, stem: 830878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 179608, stem: 831248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 179688, stem: 831618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 179768, stem: 831988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 179848, stem: 832358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 179928, stem: 832728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 180008, stem: 833098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 180088, stem: 833468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 180168, stem: 833838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 180248, stem: 834208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 180328, stem: 834578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 180408, stem: 834948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 180488, stem: 835318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 180568, stem: 835688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 180648, stem: 836058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 180728, stem: 836428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 180808, stem: 836798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 180888, stem: 837168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 180968, stem: 837538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 181048, stem: 837908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 181128, stem: 838278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 181208, stem: 838648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 181288, stem: 839018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 181368, stem: 839388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 181448, stem: 839758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 181528, stem: 840128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 181608, stem: 840498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 181688, stem: 840868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 181768, stem: 841238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 181848, stem: 841608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 181928, stem: 841978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 182008, stem: 842348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 182088, stem: 842718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 182168, stem: 843088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 182248, stem: 843458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 182328, stem: 843828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 182408, stem: 844198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 182488, stem: 844568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 182568, stem: 844938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 182648, stem: 845308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 182728, stem: 845678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 182808, stem: 846048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 182888, stem: 846418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 182968, stem: 846788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 183048, stem: 847158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 183128, stem: 847528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 183208, stem: 847898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 183288, stem: 848268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 183368, stem: 848638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 183448, stem: 849008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 183528, stem: 849378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 183608, stem: 849748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 183688, stem: 850118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 183768, stem: 850488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 183848, stem: 850858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 183928, stem: 851228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 184008, stem: 851598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 184088, stem: 851968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 184168, stem: 852338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 184248, stem: 852708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 184328, stem: 853078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 184408, stem: 853448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 184488, stem: 853818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 184568, stem: 854188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 184648, stem: 854558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 184728, stem: 854928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 184808, stem: 855298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 184888, stem: 855668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 184968, stem: 856038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 185048, stem: 856408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 185128, stem: 856778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 185208, stem: 857148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 185288, stem: 857518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 185368, stem: 857888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 185448, stem: 858258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 185528, stem: 858628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 185608, stem: 858998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 185688, stem: 859368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 185768, stem: 859738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 185848, stem: 860108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 185928, stem: 860478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 186008, stem: 860848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 186088, stem: 861218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 186168, stem: 861588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 186248, stem: 861958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 186328, stem: 862328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 186408, stem: 862698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 186488, stem: 863068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 186568, stem: 863438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 186648, stem: 863808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 186728, stem: 864178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 186808, stem: 864548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 186888, stem: 864918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 186968, stem: 865288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 187048, stem: 865658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 187128, stem: 866028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 187208, stem: 866398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 187288, stem: 866768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 187368, stem: 867138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 187448, stem: 867508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 187528, stem: 867878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 187608, stem: 868248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 187688, stem: 868618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 187768, stem: 868988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 187848, stem: 869358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 187928, stem: 869728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 188008, stem: 870098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 188088, stem: 870468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 188168, stem: 870838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 188248, stem: 871208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 188328, stem: 871578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 188408, stem: 871948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 188488, stem: 872318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 188568, stem: 872688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 188648, stem: 873058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 188728, stem: 873428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 188808, stem: 873798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 188888, stem: 874168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 188968, stem: 874538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 189048, stem: 874908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 189128, stem: 875278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 189208, stem: 875648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 189288, stem: 876018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 189368, stem: 876388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 189448, stem: 876758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 189528, stem: 877128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 189608, stem: 877498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 189688, stem: 877868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 189768, stem: 878238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 189848, stem: 878608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 189928, stem: 878978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 190008, stem: 879348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 190088, stem: 879718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 190168, stem: 880088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 190248, stem: 880458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 190328, stem: 880828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 190408, stem: 881198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 190488, stem: 881568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 190568, stem: 881938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 190648, stem: 882308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 190728, stem: 882678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 190808, stem: 883048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 190888, stem: 883418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 190968, stem: 883788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 191048, stem: 884158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 191128, stem: 884528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 191208, stem: 884898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 191288, stem: 885268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 191368, stem: 885638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 191448, stem: 886008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 191528, stem: 886378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 191608, stem: 886748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 191688, stem: 887118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 191768, stem: 887488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 191848, stem: 887858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 191928, stem: 888228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 192008, stem: 888598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 192088, stem: 888968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 192168, stem: 889338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 192248, stem: 889708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 192328, stem: 890078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 192408, stem: 890448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 192488, stem: 890818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 192568, stem: 891188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 192648, stem: 891558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 192728, stem: 891928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 192808, stem: 892298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 192888, stem: 892668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 192968, stem: 893038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 193048, stem: 893408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 193128, stem: 893778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 193208, stem: 894148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 193288, stem: 894518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 193368, stem: 894888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 193448, stem: 895258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 193528, stem: 895628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 193608, stem: 895998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 193688, stem: 896368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 193768, stem: 896738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 193848, stem: 897108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 193928, stem: 897478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 194008, stem: 897848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 194088, stem: 898218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 194168, stem: 898588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 194248, stem: 898958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 194328, stem: 899328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 194408, stem: 899698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 194488, stem: 900068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 194568, stem: 900438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 194648, stem: 900808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 194728, stem: 901178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 194808, stem: 901548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 194888, stem: 901918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 194968, stem: 902288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 195048, stem: 902658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 195128, stem: 903028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 195208, stem: 903398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 195288, stem: 903768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 195368, stem: 904138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 195448, stem: 904508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 195528, stem: 904878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 195608, stem: 905248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 195688, stem: 905618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 195768, stem: 905988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 195848, stem: 906358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 195928, stem: 906728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 196008, stem: 907098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 196088, stem: 907468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 196168, stem: 907838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 196248, stem: 908208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 196328, stem: 908578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 196408, stem: 908948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 196488, stem: 909318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 196568, stem: 909688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 196648, stem: 910058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 196728, stem: 910428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 196808, stem: 910798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 196888, stem: 911168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 196968, stem: 911538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 197048, stem: 911908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 197128, stem: 912278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 197208, stem: 912648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 197288, stem: 913018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 197368, stem: 913388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 197448, stem: 913758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 197528, stem: 914128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 197608, stem: 914498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 197688, stem: 914868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 197768, stem: 915238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 197848, stem: 915608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 197928, stem: 915978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 198008, stem: 916348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 198088, stem: 916718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 198168, stem: 917088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 198248, stem: 917458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 198328, stem: 917828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 198408, stem: 918198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 198488, stem: 918568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 198568, stem: 918938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 198648, stem: 919308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 198728, stem: 919678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 198808, stem: 920048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 198888, stem: 920418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 198968, stem: 920788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 199048, stem: 921158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 199128, stem: 921528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 199208, stem: 921898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 199288, stem: 922268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 199368, stem: 922638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 199448, stem: 923008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 199528, stem: 923378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 199608, stem: 923748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 199688, stem: 924118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 199768, stem: 924488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 199848, stem: 924858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 199928, stem: 925228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 200008, stem: 925598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 200088, stem: 925968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 200168, stem: 926338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 200248, stem: 926708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 200328, stem: 927078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 200408, stem: 927448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 200488, stem: 927818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 200568, stem: 928188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 200648, stem: 928558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 200728, stem: 928928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 200808, stem: 929298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 200888, stem: 929668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 200968, stem: 930038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 201048, stem: 930408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 201128, stem: 930778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 201208, stem: 931148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 201288, stem: 931518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 201368, stem: 931888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 201448, stem: 932258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 201528, stem: 932628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 201608, stem: 932998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 201688, stem: 933368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 201768, stem: 933738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 201848, stem: 934108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 201928, stem: 934478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 202008, stem: 934848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 202088, stem: 935218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 202168, stem: 935588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 202248, stem: 935958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 202328, stem: 936328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 202408, stem: 936698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 202488, stem: 937068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 202568, stem: 937438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 202648, stem: 937808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 202728, stem: 938178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 202808, stem: 938548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 202888, stem: 938918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 202968, stem: 939288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 203048, stem: 939658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 203128, stem: 940028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 203208, stem: 940398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 203288, stem: 940768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 203368, stem: 941138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 203448, stem: 941508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 203528, stem: 941878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 203608, stem: 942248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 203688, stem: 942618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 203768, stem: 942988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 203848, stem: 943358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 203928, stem: 943728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 204008, stem: 944098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 204088, stem: 944468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 204168, stem: 944838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 204248, stem: 945208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 204328, stem: 945578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 204408, stem: 945948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 204488, stem: 946318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 204568, stem: 946688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 204648, stem: 947058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 204728, stem: 947428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 204808, stem: 947798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 204888, stem: 948168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 204968, stem: 948538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 205048, stem: 948908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 205128, stem: 949278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 205208, stem: 949648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 205288, stem: 950018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 205368, stem: 950388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 205448, stem: 950758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 205528, stem: 951128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 205608, stem: 951498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 205688, stem: 951868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 205768, stem: 952238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 205848, stem: 952608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 205928, stem: 952978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 206008, stem: 953348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 206088, stem: 953718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 206168, stem: 954088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 206248, stem: 954458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 206328, stem: 954828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 206408, stem: 955198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 206488, stem: 955568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 206568, stem: 955938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 206648, stem: 956308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 206728, stem: 956678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 206808, stem: 957048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 206888, stem: 957418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 206968, stem: 957788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 207048, stem: 958158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 207128, stem: 958528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 207208, stem: 958898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 207288, stem: 959268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 207368, stem: 959638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 207448, stem: 960008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 207528, stem: 960378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 207608, stem: 960748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 207688, stem: 961118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 207768, stem: 961488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 207848, stem: 961858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 207928, stem: 962228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 208008, stem: 962598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 208088, stem: 962968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 208168, stem: 963338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 208248, stem: 963708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 208328, stem: 964078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 208408, stem: 964448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 208488, stem: 964818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 208568, stem: 965188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 208648, stem: 965558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 208728, stem: 965928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 208808, stem: 966298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 208888, stem: 966668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 208968, stem: 967038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 209048, stem: 967408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 209128, stem: 967778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 209208, stem: 968148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 209288, stem: 968518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 209368, stem: 968888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 209448, stem: 969258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 209528, stem: 969628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 209608, stem: 969998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 209688, stem: 970368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 209768, stem: 970738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 209848, stem: 971108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 209928, stem: 971478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 210008, stem: 971848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 210088, stem: 972218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 210168, stem: 972588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 210248, stem: 972958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 210328, stem: 973328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 210408, stem: 973698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 210488, stem: 974068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 210568, stem: 974438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 210648, stem: 974808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 210728, stem: 975178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 210808, stem: 975548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 210888, stem: 975918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 210968, stem: 976288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 211048, stem: 976658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 211128, stem: 977028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 211208, stem: 977398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 211288, stem: 977768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 211368, stem: 978138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 211448, stem: 978508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 211528, stem: 978878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 211608, stem: 979248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 211688, stem: 979618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 211768, stem: 979988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 211848, stem: 980358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 211928, stem: 980728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 212008, stem: 981098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 212088, stem: 981468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 212168, stem: 981838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 212248, stem: 982208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 212328, stem: 982578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 212408, stem: 982948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 212488, stem: 983318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 212568, stem: 983688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 212648, stem: 984058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 212728, stem: 984428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 212808, stem: 984798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 212888, stem: 985168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 212968, stem: 985538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 213048, stem: 985908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 213128, stem: 986278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 213208, stem: 986648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 213288, stem: 987018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 213368, stem: 987388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 213448, stem: 987758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 213528, stem: 988128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 213608, stem: 988498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 213688, stem: 988868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 213768, stem: 989238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 213848, stem: 989608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 213928, stem: 989978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 214008, stem: 990348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 214088, stem: 990718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 214168, stem: 991088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 214248, stem: 991458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 214328, stem: 991828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 214408, stem: 992198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 214488, stem: 992568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 214568, stem: 992938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 214648, stem: 993308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 214728, stem: 993678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 214808, stem: 994048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 214888, stem: 994418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 214968, stem: 994788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 215048, stem: 995158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 215128, stem: 995528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 215208, stem: 995898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 215288, stem: 996268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 215368, stem: 996638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 215448, stem: 997008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 215528, stem: 997378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 215608, stem: 997748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 215688, stem: 998118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 215768, stem: 998488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 215848, stem: 998858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 215928, stem: 999228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 216008, stem: 999598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 216088, stem: 999968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 216168, stem: 1000338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 216248, stem: 1000708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 216328, stem: 1001078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 216408, stem: 1001448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 216488, stem: 1001818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 216568, stem: 1002188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 216648, stem: 1002558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 216728, stem: 1002928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 216808, stem: 1003298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 216888, stem: 1003668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 216968, stem: 1004038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 217048, stem: 1004408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 217128, stem: 1004778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 217208, stem: 1005148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 217288, stem: 1005518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 217368, stem: 1005888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 217448, stem: 1006258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 217528, stem: 1006628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 217608, stem: 1006998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 217688, stem: 1007368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 217768, stem: 1007738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 217848, stem: 1008108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 217928, stem: 1008478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 218008, stem: 1008848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 218088, stem: 1009218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 218168, stem: 1009588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 218248, stem: 1009958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 218328, stem: 1010328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 218408, stem: 1010698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 218488, stem: 1011068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 218568, stem: 1011438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 218648, stem: 1011808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 218728, stem: 1012178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 218808, stem: 1012548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 218888, stem: 1012918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 218968, stem: 1013288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 219048, stem: 1013658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 219128, stem: 1014028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 219208, stem: 1014398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 219288, stem: 1014768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 219368, stem: 1015138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 219448, stem: 1015508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 219528, stem: 1015878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 219608, stem: 1016248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 219688, stem: 1016618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 219768, stem: 1016988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 219848, stem: 1017358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 219928, stem: 1017728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 220008, stem: 1018098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 220088, stem: 1018468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 220168, stem: 1018838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 220248, stem: 1019208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 220328, stem: 1019578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 220408, stem: 1019948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 220488, stem: 1020318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 220568, stem: 1020688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 220648, stem: 1021058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 220728, stem: 1021428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 220808, stem: 1021798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 220888, stem: 1022168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 220968, stem: 1022538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 221048, stem: 1022908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 221128, stem: 1023278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 221208, stem: 1023648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 221288, stem: 1024018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 221368, stem: 1024388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 221448, stem: 1024758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 221528, stem: 1025128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 221608, stem: 1025498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 221688, stem: 1025868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 221768, stem: 1026238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 221848, stem: 1026608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 221928, stem: 1026978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 222008, stem: 1027348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 222088, stem: 1027718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 222168, stem: 1028088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 222248, stem: 1028458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 222328, stem: 1028828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 222408, stem: 1029198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 222488, stem: 1029568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 222568, stem: 1029938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 222648, stem: 1030308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 222728, stem: 1030678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 222808, stem: 1031048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 222888, stem: 1031418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 222968, stem: 1031788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 223048, stem: 1032158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 223128, stem: 1032528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 223208, stem: 1032898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 223288, stem: 1033268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 223368, stem: 1033638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 223448, stem: 1034008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 223528, stem: 1034378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 223608, stem: 1034748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 223688, stem: 1035118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 223768, stem: 1035488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 223848, stem: 1035858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 223928, stem: 1036228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 224008, stem: 1036598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 224088, stem: 1036968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 224168, stem: 1037338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 224248, stem: 1037708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 224328, stem: 1038078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 224408, stem: 1038448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 224488, stem: 1038818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 224568, stem: 1039188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 224648, stem: 1039558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 224728, stem: 1039928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 224808, stem: 1040298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 224888, stem: 1040668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 224968, stem: 1041038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 225048, stem: 1041408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 225128, stem: 1041778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 225208, stem: 1042148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 225288, stem: 1042518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 225368, stem: 1042888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 225448, stem: 1043258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 225528, stem: 1043628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 225608, stem: 1043998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 225688, stem: 1044368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 225768, stem: 1044738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 225848, stem: 1045108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 225928, stem: 1045478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 226008, stem: 1045848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 226088, stem: 1046218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 226168, stem: 1046588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 226248, stem: 1046958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 226328, stem: 1047328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 226408, stem: 1047698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 226488, stem: 1048068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 226568, stem: 1048438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 226648, stem: 1048808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 226728, stem: 1049178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 226808, stem: 1049548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 226888, stem: 1049918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 226968, stem: 1050288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 227048, stem: 1050658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 227128, stem: 1051028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 227208, stem: 1051398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 227288, stem: 1051768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 227368, stem: 1052138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 227448, stem: 1052508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 227528, stem: 1052878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 227608, stem: 1053248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 227688, stem: 1053618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 227768, stem: 1053988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 227848, stem: 1054358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 227928, stem: 1054728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 228008, stem: 1055098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 228088, stem: 1055468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 228168, stem: 1055838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 228248, stem: 1056208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 228328, stem: 1056578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 228408, stem: 1056948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 228488, stem: 1057318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 228568, stem: 1057688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 228648, stem: 1058058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 228728, stem: 1058428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 228808, stem: 1058798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 228888, stem: 1059168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 228968, stem: 1059538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 229048, stem: 1059908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 229128, stem: 1060278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 229208, stem: 1060648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 229288, stem: 1061018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 229368, stem: 1061388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 229448, stem: 1061758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 229528, stem: 1062128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 229608, stem: 1062498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 229688, stem: 1062868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 229768, stem: 1063238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 229848, stem: 1063608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 229928, stem: 1063978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 230008, stem: 1064348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 230088, stem: 1064718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 230168, stem: 1065088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 230248, stem: 1065458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 230328, stem: 1065828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 230408, stem: 1066198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 230488, stem: 1066568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 230568, stem: 1066938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 230648, stem: 1067308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 230728, stem: 1067678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 230808, stem: 1068048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 230888, stem: 1068418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 230968, stem: 1068788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 231048, stem: 1069158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 231128, stem: 1069528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 231208, stem: 1069898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 231288, stem: 1070268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 231368, stem: 1070638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 231448, stem: 1071008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 231528, stem: 1071378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 231608, stem: 1071748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 231688, stem: 1072118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 231768, stem: 1072488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 231848, stem: 1072858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 231928, stem: 1073228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 232008, stem: 1073598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 232088, stem: 1073968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 232168, stem: 1074338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 232248, stem: 1074708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 232328, stem: 1075078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 232408, stem: 1075448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 232488, stem: 1075818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 232568, stem: 1076188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 232648, stem: 1076558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 232728, stem: 1076928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 232808, stem: 1077298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 232888, stem: 1077668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 232968, stem: 1078038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 233048, stem: 1078408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 233128, stem: 1078778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 233208, stem: 1079148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 233288, stem: 1079518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 233368, stem: 1079888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 233448, stem: 1080258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 233528, stem: 1080628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 233608, stem: 1080998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 233688, stem: 1081368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 233768, stem: 1081738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 233848, stem: 1082108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 233928, stem: 1082478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 234008, stem: 1082848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 234088, stem: 1083218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 234168, stem: 1083588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 234248, stem: 1083958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 234328, stem: 1084328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 234408, stem: 1084698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 234488, stem: 1085068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 234568, stem: 1085438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 234648, stem: 1085808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 234728, stem: 1086178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 234808, stem: 1086548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 234888, stem: 1086918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 234968, stem: 1087288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 235048, stem: 1087658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 235128, stem: 1088028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 235208, stem: 1088398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 235288, stem: 1088768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 235368, stem: 1089138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 235448, stem: 1089508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 235528, stem: 1089878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 235608, stem: 1090248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 235688, stem: 1090618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 235768, stem: 1090988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 235848, stem: 1091358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 235928, stem: 1091728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 236008, stem: 1092098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 236088, stem: 1092468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 236168, stem: 1092838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 236248, stem: 1093208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 236328, stem: 1093578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 236408, stem: 1093948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 236488, stem: 1094318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 236568, stem: 1094688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 236648, stem: 1095058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 236728, stem: 1095428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 236808, stem: 1095798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 236888, stem: 1096168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 236968, stem: 1096538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 237048, stem: 1096908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 237128, stem: 1097278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 237208, stem: 1097648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 237288, stem: 1098018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 237368, stem: 1098388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 237448, stem: 1098758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 237528, stem: 1099128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 237608, stem: 1099498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 237688, stem: 1099868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 237768, stem: 1100238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 237848, stem: 1100608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 237928, stem: 1100978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 238008, stem: 1101348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 238088, stem: 1101718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 238168, stem: 1102088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 238248, stem: 1102458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 238328, stem: 1102828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 238408, stem: 1103198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 238488, stem: 1103568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 238568, stem: 1103938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 238648, stem: 1104308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 238728, stem: 1104678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 238808, stem: 1105048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 238888, stem: 1105418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 238968, stem: 1105788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 239048, stem: 1106158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 239128, stem: 1106528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 239208, stem: 1106898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 239288, stem: 1107268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 239368, stem: 1107638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 239448, stem: 1108008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 239528, stem: 1108378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 239608, stem: 1108748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 239688, stem: 1109118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 239768, stem: 1109488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 239848, stem: 1109858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 239928, stem: 1110228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 240008, stem: 1110598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 240088, stem: 1110968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 240168, stem: 1111338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 240248, stem: 1111708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 240328, stem: 1112078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 240408, stem: 1112448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 240488, stem: 1112818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 240568, stem: 1113188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 240648, stem: 1113558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 240728, stem: 1113928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 240808, stem: 1114298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 240888, stem: 1114668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 240968, stem: 1115038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 241048, stem: 1115408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 241128, stem: 1115778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 241208, stem: 1116148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 241288, stem: 1116518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 241368, stem: 1116888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 241448, stem: 1117258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 241528, stem: 1117628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 241608, stem: 1117998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 241688, stem: 1118368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 241768, stem: 1118738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 241848, stem: 1119108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 241928, stem: 1119478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 242008, stem: 1119848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 242088, stem: 1120218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 242168, stem: 1120588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 242248, stem: 1120958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 242328, stem: 1121328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 242408, stem: 1121698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 242488, stem: 1122068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 242568, stem: 1122438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 242648, stem: 1122808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 242728, stem: 1123178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 242808, stem: 1123548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 242888, stem: 1123918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 242968, stem: 1124288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 243048, stem: 1124658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 243128, stem: 1125028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 243208, stem: 1125398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 243288, stem: 1125768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 243368, stem: 1126138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 243448, stem: 1126508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 243528, stem: 1126878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 243608, stem: 1127248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 243688, stem: 1127618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 243768, stem: 1127988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 243848, stem: 1128358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 243928, stem: 1128728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 244008, stem: 1129098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 244088, stem: 1129468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 244168, stem: 1129838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 244248, stem: 1130208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 244328, stem: 1130578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 244408, stem: 1130948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 244488, stem: 1131318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 244568, stem: 1131688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 244648, stem: 1132058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 244728, stem: 1132428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 244808, stem: 1132798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 244888, stem: 1133168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 244968, stem: 1133538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 245048, stem: 1133908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 245128, stem: 1134278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 245208, stem: 1134648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 245288, stem: 1135018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 245368, stem: 1135388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 245448, stem: 1135758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 245528, stem: 1136128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 245608, stem: 1136498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 245688, stem: 1136868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 245768, stem: 1137238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 245848, stem: 1137608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 245928, stem: 1137978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 246008, stem: 1138348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 246088, stem: 1138718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 246168, stem: 1139088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 246248, stem: 1139458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 246328, stem: 1139828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 246408, stem: 1140198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 246488, stem: 1140568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 246568, stem: 1140938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 246648, stem: 1141308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 246728, stem: 1141678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 246808, stem: 1142048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 246888, stem: 1142418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 246968, stem: 1142788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 247048, stem: 1143158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 247128, stem: 1143528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 247208, stem: 1143898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 247288, stem: 1144268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 247368, stem: 1144638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 247448, stem: 1145008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 247528, stem: 1145378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 247608, stem: 1145748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 247688, stem: 1146118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 247768, stem: 1146488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 247848, stem: 1146858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 247928, stem: 1147228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 248008, stem: 1147598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 248088, stem: 1147968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 248168, stem: 1148338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 248248, stem: 1148708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 248328, stem: 1149078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 248408, stem: 1149448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 248488, stem: 1149818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 248568, stem: 1150188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 248648, stem: 1150558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 248728, stem: 1150928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 248808, stem: 1151298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 248888, stem: 1151668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 248968, stem: 1152038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 249048, stem: 1152408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 249128, stem: 1152778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 249208, stem: 1153148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 249288, stem: 1153518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 249368, stem: 1153888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 249448, stem: 1154258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 249528, stem: 1154628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 249608, stem: 1154998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 249688, stem: 1155368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 249768, stem: 1155738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 249848, stem: 1156108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 249928, stem: 1156478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 250008, stem: 1156848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 250088, stem: 1157218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 250168, stem: 1157588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 250248, stem: 1157958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 250328, stem: 1158328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 250408, stem: 1158698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 250488, stem: 1159068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 250568, stem: 1159438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 250648, stem: 1159808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 250728, stem: 1160178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 250808, stem: 1160548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 250888, stem: 1160918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 250968, stem: 1161288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 251048, stem: 1161658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 251128, stem: 1162028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 251208, stem: 1162398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 251288, stem: 1162768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 251368, stem: 1163138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 251448, stem: 1163508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 251528, stem: 1163878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 251608, stem: 1164248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 251688, stem: 1164618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 251768, stem: 1164988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 251848, stem: 1165358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 251928, stem: 1165728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 252008, stem: 1166098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 252088, stem: 1166468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 252168, stem: 1166838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 252248, stem: 1167208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 252328, stem: 1167578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 252408, stem: 1167948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 252488, stem: 1168318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 252568, stem: 1168688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 252648, stem: 1169058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 252728, stem: 1169428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 252808, stem: 1169798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 252888, stem: 1170168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 252968, stem: 1170538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 253048, stem: 1170908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 253128, stem: 1171278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 253208, stem: 1171648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 253288, stem: 1172018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 253368, stem: 1172388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 253448, stem: 1172758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 253528, stem: 1173128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 253608, stem: 1173498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 253688, stem: 1173868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 253768, stem: 1174238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 253848, stem: 1174608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 253928, stem: 1174978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 254008, stem: 1175348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 254088, stem: 1175718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 254168, stem: 1176088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 254248, stem: 1176458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 254328, stem: 1176828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 254408, stem: 1177198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 254488, stem: 1177568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 254568, stem: 1177938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 254648, stem: 1178308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 254728, stem: 1178678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 254808, stem: 1179048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 254888, stem: 1179418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 254968, stem: 1179788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 255048, stem: 1180158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 255128, stem: 1180528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 255208, stem: 1180898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 255288, stem: 1181268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 255368, stem: 1181638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 255448, stem: 1182008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 255528, stem: 1182378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 255608, stem: 1182748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 255688, stem: 1183118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 255768, stem: 1183488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 255848, stem: 1183858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 255928, stem: 1184228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 256008, stem: 1184598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 256088, stem: 1184968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 256168, stem: 1185338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 256248, stem: 1185708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 256328, stem: 1186078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 256408, stem: 1186448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 256488, stem: 1186818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 256568, stem: 1187188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 256648, stem: 1187558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 256728, stem: 1187928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 256808, stem: 1188298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 256888, stem: 1188668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 256968, stem: 1189038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 257048, stem: 1189408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 257128, stem: 1189778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 257208, stem: 1190148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 257288, stem: 1190518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 257368, stem: 1190888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 257448, stem: 1191258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 257528, stem: 1191628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 257608, stem: 1191998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 257688, stem: 1192368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 257768, stem: 1192738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 257848, stem: 1193108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 257928, stem: 1193478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 258008, stem: 1193848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 258088, stem: 1194218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 258168, stem: 1194588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 258248, stem: 1194958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 258328, stem: 1195328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 258408, stem: 1195698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 258488, stem: 1196068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 258568, stem: 1196438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 258648, stem: 1196808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 258728, stem: 1197178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 258808, stem: 1197548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 258888, stem: 1197918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 258968, stem: 1198288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 259048, stem: 1198658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 259128, stem: 1199028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 259208, stem: 1199398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 259288, stem: 1199768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 259368, stem: 1200138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 259448, stem: 1200508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 259528, stem: 1200878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 259608, stem: 1201248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 259688, stem: 1201618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 259768, stem: 1201988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 259848, stem: 1202358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 259928, stem: 1202728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 260008, stem: 1203098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 260088, stem: 1203468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 260168, stem: 1203838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 260248, stem: 1204208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 260328, stem: 1204578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 260408, stem: 1204948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 260488, stem: 1205318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 260568, stem: 1205688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 260648, stem: 1206058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 260728, stem: 1206428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 260808, stem: 1206798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 260888, stem: 1207168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 260968, stem: 1207538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 261048, stem: 1207908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 261128, stem: 1208278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 261208, stem: 1208648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 261288, stem: 1209018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 261368, stem: 1209388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 261448, stem: 1209758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 261528, stem: 1210128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 261608, stem: 1210498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 261688, stem: 1210868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 261768, stem: 1211238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 261848, stem: 1211608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 261928, stem: 1211978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 262008, stem: 1212348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 262088, stem: 1212718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 262168, stem: 1213088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 262248, stem: 1213458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 262328, stem: 1213828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 262408, stem: 1214198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 262488, stem: 1214568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 262568, stem: 1214938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 262648, stem: 1215308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 262728, stem: 1215678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 262808, stem: 1216048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 262888, stem: 1216418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 262968, stem: 1216788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 263048, stem: 1217158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 263128, stem: 1217528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 263208, stem: 1217898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 263288, stem: 1218268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 263368, stem: 1218638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 263448, stem: 1219008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 263528, stem: 1219378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 263608, stem: 1219748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 263688, stem: 1220118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 263768, stem: 1220488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 263848, stem: 1220858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 263928, stem: 1221228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 264008, stem: 1221598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 264088, stem: 1221968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 264168, stem: 1222338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 264248, stem: 1222708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 264328, stem: 1223078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 264408, stem: 1223448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 264488, stem: 1223818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 264568, stem: 1224188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 264648, stem: 1224558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 264728, stem: 1224928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 264808, stem: 1225298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 264888, stem: 1225668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 264968, stem: 1226038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 265048, stem: 1226408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 265128, stem: 1226778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 265208, stem: 1227148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 265288, stem: 1227518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 265368, stem: 1227888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 265448, stem: 1228258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 265528, stem: 1228628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 265608, stem: 1228998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 265688, stem: 1229368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 265768, stem: 1229738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 265848, stem: 1230108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 265928, stem: 1230478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 266008, stem: 1230848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 266088, stem: 1231218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 266168, stem: 1231588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 266248, stem: 1231958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 266328, stem: 1232328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 266408, stem: 1232698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 266488, stem: 1233068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 266568, stem: 1233438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 266648, stem: 1233808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 266728, stem: 1234178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 266808, stem: 1234548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 266888, stem: 1234918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 266968, stem: 1235288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 267048, stem: 1235658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 267128, stem: 1236028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 267208, stem: 1236398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 267288, stem: 1236768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 267368, stem: 1237138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 267448, stem: 1237508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 267528, stem: 1237878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 267608, stem: 1238248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 267688, stem: 1238618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 267768, stem: 1238988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 267848, stem: 1239358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 267928, stem: 1239728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 268008, stem: 1240098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 268088, stem: 1240468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 268168, stem: 1240838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 268248, stem: 1241208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 268328, stem: 1241578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 268408, stem: 1241948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 268488, stem: 1242318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 268568, stem: 1242688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 268648, stem: 1243058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 268728, stem: 1243428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 268808, stem: 1243798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 268888, stem: 1244168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 268968, stem: 1244538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 269048, stem: 1244908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 269128, stem: 1245278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 269208, stem: 1245648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 269288, stem: 1246018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 269368, stem: 1246388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 269448, stem: 1246758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 269528, stem: 1247128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 269608, stem: 1247498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 269688, stem: 1247868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 269768, stem: 1248238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 269848, stem: 1248608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 269928, stem: 1248978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 270008, stem: 1249348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 270088, stem: 1249718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 270168, stem: 1250088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 270248, stem: 1250458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 270328, stem: 1250828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 270408, stem: 1251198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 270488, stem: 1251568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 270568, stem: 1251938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 270648, stem: 1252308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 270728, stem: 1252678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 270808, stem: 1253048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 270888, stem: 1253418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 270968, stem: 1253788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 271048, stem: 1254158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 271128, stem: 1254528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 271208, stem: 1254898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 271288, stem: 1255268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 271368, stem: 1255638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 271448, stem: 1256008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 271528, stem: 1256378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 271608, stem: 1256748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 271688, stem: 1257118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 271768, stem: 1257488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 271848, stem: 1257858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 271928, stem: 1258228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 272008, stem: 1258598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 272088, stem: 1258968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 272168, stem: 1259338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 272248, stem: 1259708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 272328, stem: 1260078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 272408, stem: 1260448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 272488, stem: 1260818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 272568, stem: 1261188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 272648, stem: 1261558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 272728, stem: 1261928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 272808, stem: 1262298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 272888, stem: 1262668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 272968, stem: 1263038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 273048, stem: 1263408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 273128, stem: 1263778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 273208, stem: 1264148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 273288, stem: 1264518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 273368, stem: 1264888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 273448, stem: 1265258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 273528, stem: 1265628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 273608, stem: 1265998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 273688, stem: 1266368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 273768, stem: 1266738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 273848, stem: 1267108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 273928, stem: 1267478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 274008, stem: 1267848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 274088, stem: 1268218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 274168, stem: 1268588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 274248, stem: 1268958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 274328, stem: 1269328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 274408, stem: 1269698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 274488, stem: 1270068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 274568, stem: 1270438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 274648, stem: 1270808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 274728, stem: 1271178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 274808, stem: 1271548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 274888, stem: 1271918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 274968, stem: 1272288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 275048, stem: 1272658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 275128, stem: 1273028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 275208, stem: 1273398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 275288, stem: 1273768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 275368, stem: 1274138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 275448, stem: 1274508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 275528, stem: 1274878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 275608, stem: 1275248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 275688, stem: 1275618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 275768, stem: 1275988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 275848, stem: 1276358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 275928, stem: 1276728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 276008, stem: 1277098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 276088, stem: 1277468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 276168, stem: 1277838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 276248, stem: 1278208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 276328, stem: 1278578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 276408, stem: 1278948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 276488, stem: 1279318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 276568, stem: 1279688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 276648, stem: 1280058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 276728, stem: 1280428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 276808, stem: 1280798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 276888, stem: 1281168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 276968, stem: 1281538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 277048, stem: 1281908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 277128, stem: 1282278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 277208, stem: 1282648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 277288, stem: 1283018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 277368, stem: 1283388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 277448, stem: 1283758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 277528, stem: 1284128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 277608, stem: 1284498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 277688, stem: 1284868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 277768, stem: 1285238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 277848, stem: 1285608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 277928, stem: 1285978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 278008, stem: 1286348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 278088, stem: 1286718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 278168, stem: 1287088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 278248, stem: 1287458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 278328, stem: 1287828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 278408, stem: 1288198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 278488, stem: 1288568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 278568, stem: 1288938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 278648, stem: 1289308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 278728, stem: 1289678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 278808, stem: 1290048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 278888, stem: 1290418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 278968, stem: 1290788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 279048, stem: 1291158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 279128, stem: 1291528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 279208, stem: 1291898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 279288, stem: 1292268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 279368, stem: 1292638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 279448, stem: 1293008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 279528, stem: 1293378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 279608, stem: 1293748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 279688, stem: 1294118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 279768, stem: 1294488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 279848, stem: 1294858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 279928, stem: 1295228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 280008, stem: 1295598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 280088, stem: 1295968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 280168, stem: 1296338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 280248, stem: 1296708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 280328, stem: 1297078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 280408, stem: 1297448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 280488, stem: 1297818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 280568, stem: 1298188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 280648, stem: 1298558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 280728, stem: 1298928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 280808, stem: 1299298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 280888, stem: 1299668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 280968, stem: 1300038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 281048, stem: 1300408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 281128, stem: 1300778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 281208, stem: 1301148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 281288, stem: 1301518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 281368, stem: 1301888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 281448, stem: 1302258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 281528, stem: 1302628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 281608, stem: 1302998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 281688, stem: 1303368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 281768, stem: 1303738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 281848, stem: 1304108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 281928, stem: 1304478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 282008, stem: 1304848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 282088, stem: 1305218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 282168, stem: 1305588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 282248, stem: 1305958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 282328, stem: 1306328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 282408, stem: 1306698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 282488, stem: 1307068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 282568, stem: 1307438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 282648, stem: 1307808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 282728, stem: 1308178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 282808, stem: 1308548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 282888, stem: 1308918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 282968, stem: 1309288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 283048, stem: 1309658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 283128, stem: 1310028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 283208, stem: 1310398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 283288, stem: 1310768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 283368, stem: 1311138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 283448, stem: 1311508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 283528, stem: 1311878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 283608, stem: 1312248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 283688, stem: 1312618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 283768, stem: 1312988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 283848, stem: 1313358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 283928, stem: 1313728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 284008, stem: 1314098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 284088, stem: 1314468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 284168, stem: 1314838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 284248, stem: 1315208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 284328, stem: 1315578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 284408, stem: 1315948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 284488, stem: 1316318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 284568, stem: 1316688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 284648, stem: 1317058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 284728, stem: 1317428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 284808, stem: 1317798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 284888, stem: 1318168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 284968, stem: 1318538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 285048, stem: 1318908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 285128, stem: 1319278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 285208, stem: 1319648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 285288, stem: 1320018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 285368, stem: 1320388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 285448, stem: 1320758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 285528, stem: 1321128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 285608, stem: 1321498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 285688, stem: 1321868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 285768, stem: 1322238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 285848, stem: 1322608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 285928, stem: 1322978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 286008, stem: 1323348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 286088, stem: 1323718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 286168, stem: 1324088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 286248, stem: 1324458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 286328, stem: 1324828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 286408, stem: 1325198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 286488, stem: 1325568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 286568, stem: 1325938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 286648, stem: 1326308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 286728, stem: 1326678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 286808, stem: 1327048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 286888, stem: 1327418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 286968, stem: 1327788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 287048, stem: 1328158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 287128, stem: 1328528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 287208, stem: 1328898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 287288, stem: 1329268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 287368, stem: 1329638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 287448, stem: 1330008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 287528, stem: 1330378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 287608, stem: 1330748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 287688, stem: 1331118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 287768, stem: 1331488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 287848, stem: 1331858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 287928, stem: 1332228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 288008, stem: 1332598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 288088, stem: 1332968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 288168, stem: 1333338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 288248, stem: 1333708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 288328, stem: 1334078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 288408, stem: 1334448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 288488, stem: 1334818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 288568, stem: 1335188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 288648, stem: 1335558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 288728, stem: 1335928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 288808, stem: 1336298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 288888, stem: 1336668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 288968, stem: 1337038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 289048, stem: 1337408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 289128, stem: 1337778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 289208, stem: 1338148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 289288, stem: 1338518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 289368, stem: 1338888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 289448, stem: 1339258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 289528, stem: 1339628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 289608, stem: 1339998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 289688, stem: 1340368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 289768, stem: 1340738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 289848, stem: 1341108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 289928, stem: 1341478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 290008, stem: 1341848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 290088, stem: 1342218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 290168, stem: 1342588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 290248, stem: 1342958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 290328, stem: 1343328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 290408, stem: 1343698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 290488, stem: 1344068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 290568, stem: 1344438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 290648, stem: 1344808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 290728, stem: 1345178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 290808, stem: 1345548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 290888, stem: 1345918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 290968, stem: 1346288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 291048, stem: 1346658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 291128, stem: 1347028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 291208, stem: 1347398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 291288, stem: 1347768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 291368, stem: 1348138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 291448, stem: 1348508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 291528, stem: 1348878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 291608, stem: 1349248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 291688, stem: 1349618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 291768, stem: 1349988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 291848, stem: 1350358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 291928, stem: 1350728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 292008, stem: 1351098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 292088, stem: 1351468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 292168, stem: 1351838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 292248, stem: 1352208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 292328, stem: 1352578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 292408, stem: 1352948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 292488, stem: 1353318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 292568, stem: 1353688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 292648, stem: 1354058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 292728, stem: 1354428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 292808, stem: 1354798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 292888, stem: 1355168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 292968, stem: 1355538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 293048, stem: 1355908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 293128, stem: 1356278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 293208, stem: 1356648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 293288, stem: 1357018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 293368, stem: 1357388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 293448, stem: 1357758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 293528, stem: 1358128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 293608, stem: 1358498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 293688, stem: 1358868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 293768, stem: 1359238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 293848, stem: 1359608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 293928, stem: 1359978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 294008, stem: 1360348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 294088, stem: 1360718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 294168, stem: 1361088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 294248, stem: 1361458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 294328, stem: 1361828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 294408, stem: 1362198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 294488, stem: 1362568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 294568, stem: 1362938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 294648, stem: 1363308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 294728, stem: 1363678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 294808, stem: 1364048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 294888, stem: 1364418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 294968, stem: 1364788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 295048, stem: 1365158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 295128, stem: 1365528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 295208, stem: 1365898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 295288, stem: 1366268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 295368, stem: 1366638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 295448, stem: 1367008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 295528, stem: 1367378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 295608, stem: 1367748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 295688, stem: 1368118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 295768, stem: 1368488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 295848, stem: 1368858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 295928, stem: 1369228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 296008, stem: 1369598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 296088, stem: 1369968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 296168, stem: 1370338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 296248, stem: 1370708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 296328, stem: 1371078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 296408, stem: 1371448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 296488, stem: 1371818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 296568, stem: 1372188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 296648, stem: 1372558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 296728, stem: 1372928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 296808, stem: 1373298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 296888, stem: 1373668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 296968, stem: 1374038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 297048, stem: 1374408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 297128, stem: 1374778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 297208, stem: 1375148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 297288, stem: 1375518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 297368, stem: 1375888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 297448, stem: 1376258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 297528, stem: 1376628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 297608, stem: 1376998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 297688, stem: 1377368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 297768, stem: 1377738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 297848, stem: 1378108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 297928, stem: 1378478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 298008, stem: 1378848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 298088, stem: 1379218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 298168, stem: 1379588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 298248, stem: 1379958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 298328, stem: 1380328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 298408, stem: 1380698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 298488, stem: 1381068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 298568, stem: 1381438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 298648, stem: 1381808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 298728, stem: 1382178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 298808, stem: 1382548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 298888, stem: 1382918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 298968, stem: 1383288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 299048, stem: 1383658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 299128, stem: 1384028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 299208, stem: 1384398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 299288, stem: 1384768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 299368, stem: 1385138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 299448, stem: 1385508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 299528, stem: 1385878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 299608, stem: 1386248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 299688, stem: 1386618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 299768, stem: 1386988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 299848, stem: 1387358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 299928, stem: 1387728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 300008, stem: 1388098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 300088, stem: 1388468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 300168, stem: 1388838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 300248, stem: 1389208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 300328, stem: 1389578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 300408, stem: 1389948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 300488, stem: 1390318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 300568, stem: 1390688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 300648, stem: 1391058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 300728, stem: 1391428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 300808, stem: 1391798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 300888, stem: 1392168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 300968, stem: 1392538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 301048, stem: 1392908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 301128, stem: 1393278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 301208, stem: 1393648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 301288, stem: 1394018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 301368, stem: 1394388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 301448, stem: 1394758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 301528, stem: 1395128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 301608, stem: 1395498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 301688, stem: 1395868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 301768, stem: 1396238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 301848, stem: 1396608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 301928, stem: 1396978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 302008, stem: 1397348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 302088, stem: 1397718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 302168, stem: 1398088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 302248, stem: 1398458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 302328, stem: 1398828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 302408, stem: 1399198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 302488, stem: 1399568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 302568, stem: 1399938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 302648, stem: 1400308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 302728, stem: 1400678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 302808, stem: 1401048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 302888, stem: 1401418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 302968, stem: 1401788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 303048, stem: 1402158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 303128, stem: 1402528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 303208, stem: 1402898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 303288, stem: 1403268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 303368, stem: 1403638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 303448, stem: 1404008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 303528, stem: 1404378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 303608, stem: 1404748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 303688, stem: 1405118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 303768, stem: 1405488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 303848, stem: 1405858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 303928, stem: 1406228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 304008, stem: 1406598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 304088, stem: 1406968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 304168, stem: 1407338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 304248, stem: 1407708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 304328, stem: 1408078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 304408, stem: 1408448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 304488, stem: 1408818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 304568, stem: 1409188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 304648, stem: 1409558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 304728, stem: 1409928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 304808, stem: 1410298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 304888, stem: 1410668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 304968, stem: 1411038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 305048, stem: 1411408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 305128, stem: 1411778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 305208, stem: 1412148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 305288, stem: 1412518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 305368, stem: 1412888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 305448, stem: 1413258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 305528, stem: 1413628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 305608, stem: 1413998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 305688, stem: 1414368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 305768, stem: 1414738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 305848, stem: 1415108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 305928, stem: 1415478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 306008, stem: 1415848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 306088, stem: 1416218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 306168, stem: 1416588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 306248, stem: 1416958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 306328, stem: 1417328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 306408, stem: 1417698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 306488, stem: 1418068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 306568, stem: 1418438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 306648, stem: 1418808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 306728, stem: 1419178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 306808, stem: 1419548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 306888, stem: 1419918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 306968, stem: 1420288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 307048, stem: 1420658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 307128, stem: 1421028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 307208, stem: 1421398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 307288, stem: 1421768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 307368, stem: 1422138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 307448, stem: 1422508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 307528, stem: 1422878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 307608, stem: 1423248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 307688, stem: 1423618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 307768, stem: 1423988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 307848, stem: 1424358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 307928, stem: 1424728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 308008, stem: 1425098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 308088, stem: 1425468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 308168, stem: 1425838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 308248, stem: 1426208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 308328, stem: 1426578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 308408, stem: 1426948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 308488, stem: 1427318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 308568, stem: 1427688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 308648, stem: 1428058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 308728, stem: 1428428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 308808, stem: 1428798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 308888, stem: 1429168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 308968, stem: 1429538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 309048, stem: 1429908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 309128, stem: 1430278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 309208, stem: 1430648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 309288, stem: 1431018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 309368, stem: 1431388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 309448, stem: 1431758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 309528, stem: 1432128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 309608, stem: 1432498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 309688, stem: 1432868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 309768, stem: 1433238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 309848, stem: 1433608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 309928, stem: 1433978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 310008, stem: 1434348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 310088, stem: 1434718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 310168, stem: 1435088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 310248, stem: 1435458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 310328, stem: 1435828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 310408, stem: 1436198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 310488, stem: 1436568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 310568, stem: 1436938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 310648, stem: 1437308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 310728, stem: 1437678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 310808, stem: 1438048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 310888, stem: 1438418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 310968, stem: 1438788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 311048, stem: 1439158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 311128, stem: 1439528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 311208, stem: 1439898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 311288, stem: 1440268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 311368, stem: 1440638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 311448, stem: 1441008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 311528, stem: 1441378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 311608, stem: 1441748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 311688, stem: 1442118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 311768, stem: 1442488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 311848, stem: 1442858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 311928, stem: 1443228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 312008, stem: 1443598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 312088, stem: 1443968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 312168, stem: 1444338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 312248, stem: 1444708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 312328, stem: 1445078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 312408, stem: 1445448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 312488, stem: 1445818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 312568, stem: 1446188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 312648, stem: 1446558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 312728, stem: 1446928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 312808, stem: 1447298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 312888, stem: 1447668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 312968, stem: 1448038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 313048, stem: 1448408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 313128, stem: 1448778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 313208, stem: 1449148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 313288, stem: 1449518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 313368, stem: 1449888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 313448, stem: 1450258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 313528, stem: 1450628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 313608, stem: 1450998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 313688, stem: 1451368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 313768, stem: 1451738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 313848, stem: 1452108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 313928, stem: 1452478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 314008, stem: 1452848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 314088, stem: 1453218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 314168, stem: 1453588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 314248, stem: 1453958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 314328, stem: 1454328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 314408, stem: 1454698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 314488, stem: 1455068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 314568, stem: 1455438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 314648, stem: 1455808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 314728, stem: 1456178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 314808, stem: 1456548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 314888, stem: 1456918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 314968, stem: 1457288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 315048, stem: 1457658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 315128, stem: 1458028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 315208, stem: 1458398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 315288, stem: 1458768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 315368, stem: 1459138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 315448, stem: 1459508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 315528, stem: 1459878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 315608, stem: 1460248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 315688, stem: 1460618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 315768, stem: 1460988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 315848, stem: 1461358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 315928, stem: 1461728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 316008, stem: 1462098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 316088, stem: 1462468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 316168, stem: 1462838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 316248, stem: 1463208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 316328, stem: 1463578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 316408, stem: 1463948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 316488, stem: 1464318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 316568, stem: 1464688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 316648, stem: 1465058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 316728, stem: 1465428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 316808, stem: 1465798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 316888, stem: 1466168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 316968, stem: 1466538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 317048, stem: 1466908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 317128, stem: 1467278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 317208, stem: 1467648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 317288, stem: 1468018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 317368, stem: 1468388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 317448, stem: 1468758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 317528, stem: 1469128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 317608, stem: 1469498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 317688, stem: 1469868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 317768, stem: 1470238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 317848, stem: 1470608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 317928, stem: 1470978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 318008, stem: 1471348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 318088, stem: 1471718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 318168, stem: 1472088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 318248, stem: 1472458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 318328, stem: 1472828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 318408, stem: 1473198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 318488, stem: 1473568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 318568, stem: 1473938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 318648, stem: 1474308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 318728, stem: 1474678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 318808, stem: 1475048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 318888, stem: 1475418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 318968, stem: 1475788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 319048, stem: 1476158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 319128, stem: 1476528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 319208, stem: 1476898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 319288, stem: 1477268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 319368, stem: 1477638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 319448, stem: 1478008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 319528, stem: 1478378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 319608, stem: 1478748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 319688, stem: 1479118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 319768, stem: 1479488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 319848, stem: 1479858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 319928, stem: 1480228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 320008, stem: 1480598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 320088, stem: 1480968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 320168, stem: 1481338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 320248, stem: 1481708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 320328, stem: 1482078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 320408, stem: 1482448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 320488, stem: 1482818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 320568, stem: 1483188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 320648, stem: 1483558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 320728, stem: 1483928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 320808, stem: 1484298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 320888, stem: 1484668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 320968, stem: 1485038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 321048, stem: 1485408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 321128, stem: 1485778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 321208, stem: 1486148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 321288, stem: 1486518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 321368, stem: 1486888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 321448, stem: 1487258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 321528, stem: 1487628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 321608, stem: 1487998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 321688, stem: 1488368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 321768, stem: 1488738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 321848, stem: 1489108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 321928, stem: 1489478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 322008, stem: 1489848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 322088, stem: 1490218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 322168, stem: 1490588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 322248, stem: 1490958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 322328, stem: 1491328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 322408, stem: 1491698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 322488, stem: 1492068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 322568, stem: 1492438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 322648, stem: 1492808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 322728, stem: 1493178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 322808, stem: 1493548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 322888, stem: 1493918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 322968, stem: 1494288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 323048, stem: 1494658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 323128, stem: 1495028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 323208, stem: 1495398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 323288, stem: 1495768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 323368, stem: 1496138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 323448, stem: 1496508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 323528, stem: 1496878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 323608, stem: 1497248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 323688, stem: 1497618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 323768, stem: 1497988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 323848, stem: 1498358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 323928, stem: 1498728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 324008, stem: 1499098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 324088, stem: 1499468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 324168, stem: 1499838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 324248, stem: 1500208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 324328, stem: 1500578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 324408, stem: 1500948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 324488, stem: 1501318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 324568, stem: 1501688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 324648, stem: 1502058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 324728, stem: 1502428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 324808, stem: 1502798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 324888, stem: 1503168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 324968, stem: 1503538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 325048, stem: 1503908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 325128, stem: 1504278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 325208, stem: 1504648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 325288, stem: 1505018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 325368, stem: 1505388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 325448, stem: 1505758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 325528, stem: 1506128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 325608, stem: 1506498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 325688, stem: 1506868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 325768, stem: 1507238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 325848, stem: 1507608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 325928, stem: 1507978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 326008, stem: 1508348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 326088, stem: 1508718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 326168, stem: 1509088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 326248, stem: 1509458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 326328, stem: 1509828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 326408, stem: 1510198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 326488, stem: 1510568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 326568, stem: 1510938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 326648, stem: 1511308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 326728, stem: 1511678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 326808, stem: 1512048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 326888, stem: 1512418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 326968, stem: 1512788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 327048, stem: 1513158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 327128, stem: 1513528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 327208, stem: 1513898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 327288, stem: 1514268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 327368, stem: 1514638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 327448, stem: 1515008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 327528, stem: 1515378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 327608, stem: 1515748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 327688, stem: 1516118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 327768, stem: 1516488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 327848, stem: 1516858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 327928, stem: 1517228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 328008, stem: 1517598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 328088, stem: 1517968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 328168, stem: 1518338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 328248, stem: 1518708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 328328, stem: 1519078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 328408, stem: 1519448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 328488, stem: 1519818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 328568, stem: 1520188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 328648, stem: 1520558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 328728, stem: 1520928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 328808, stem: 1521298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 328888, stem: 1521668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 328968, stem: 1522038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 329048, stem: 1522408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 329128, stem: 1522778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 329208, stem: 1523148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 329288, stem: 1523518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 329368, stem: 1523888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 329448, stem: 1524258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 329528, stem: 1524628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 329608, stem: 1524998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 329688, stem: 1525368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 329768, stem: 1525738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 329848, stem: 1526108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 329928, stem: 1526478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 330008, stem: 1526848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 330088, stem: 1527218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 330168, stem: 1527588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 330248, stem: 1527958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 330328, stem: 1528328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 330408, stem: 1528698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 330488, stem: 1529068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 330568, stem: 1529438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 330648, stem: 1529808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 330728, stem: 1530178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 330808, stem: 1530548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 330888, stem: 1530918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 330968, stem: 1531288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 331048, stem: 1531658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 331128, stem: 1532028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 331208, stem: 1532398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 331288, stem: 1532768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 331368, stem: 1533138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 331448, stem: 1533508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 331528, stem: 1533878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 331608, stem: 1534248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 331688, stem: 1534618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 331768, stem: 1534988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 331848, stem: 1535358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 331928, stem: 1535728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 332008, stem: 1536098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 332088, stem: 1536468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 332168, stem: 1536838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 332248, stem: 1537208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 332328, stem: 1537578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 332408, stem: 1537948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 332488, stem: 1538318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 332568, stem: 1538688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 332648, stem: 1539058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 332728, stem: 1539428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 332808, stem: 1539798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 332888, stem: 1540168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 332968, stem: 1540538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 333048, stem: 1540908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 333128, stem: 1541278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 333208, stem: 1541648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 333288, stem: 1542018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 333368, stem: 1542388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 333448, stem: 1542758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 333528, stem: 1543128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 333608, stem: 1543498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 333688, stem: 1543868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 333768, stem: 1544238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 333848, stem: 1544608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 333928, stem: 1544978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 334008, stem: 1545348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 334088, stem: 1545718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 334168, stem: 1546088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 334248, stem: 1546458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 334328, stem: 1546828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 334408, stem: 1547198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 334488, stem: 1547568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 334568, stem: 1547938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 334648, stem: 1548308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 334728, stem: 1548678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 334808, stem: 1549048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 334888, stem: 1549418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 334968, stem: 1549788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 335048, stem: 1550158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 335128, stem: 1550528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 335208, stem: 1550898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 335288, stem: 1551268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 335368, stem: 1551638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 335448, stem: 1552008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 335528, stem: 1552378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 335608, stem: 1552748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 335688, stem: 1553118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 335768, stem: 1553488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 335848, stem: 1553858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 335928, stem: 1554228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 336008, stem: 1554598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 336088, stem: 1554968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 336168, stem: 1555338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 336248, stem: 1555708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 336328, stem: 1556078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 336408, stem: 1556448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 336488, stem: 1556818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 336568, stem: 1557188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 336648, stem: 1557558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 336728, stem: 1557928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 336808, stem: 1558298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 336888, stem: 1558668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 336968, stem: 1559038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 337048, stem: 1559408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 337128, stem: 1559778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 337208, stem: 1560148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 337288, stem: 1560518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 337368, stem: 1560888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 337448, stem: 1561258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 337528, stem: 1561628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 337608, stem: 1561998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 337688, stem: 1562368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 337768, stem: 1562738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 337848, stem: 1563108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 337928, stem: 1563478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 338008, stem: 1563848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 338088, stem: 1564218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 338168, stem: 1564588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 338248, stem: 1564958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 338328, stem: 1565328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 338408, stem: 1565698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 338488, stem: 1566068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 338568, stem: 1566438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 338648, stem: 1566808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 338728, stem: 1567178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 338808, stem: 1567548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 338888, stem: 1567918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 338968, stem: 1568288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 339048, stem: 1568658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 339128, stem: 1569028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 339208, stem: 1569398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 339288, stem: 1569768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 339368, stem: 1570138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 339448, stem: 1570508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 339528, stem: 1570878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 339608, stem: 1571248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 339688, stem: 1571618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 339768, stem: 1571988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 339848, stem: 1572358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 339928, stem: 1572728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 340008, stem: 1573098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 340088, stem: 1573468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 340168, stem: 1573838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 340248, stem: 1574208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 340328, stem: 1574578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 340408, stem: 1574948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 340488, stem: 1575318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 340568, stem: 1575688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 340648, stem: 1576058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 340728, stem: 1576428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 340808, stem: 1576798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 340888, stem: 1577168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 340968, stem: 1577538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 341048, stem: 1577908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 341128, stem: 1578278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 341208, stem: 1578648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 341288, stem: 1579018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 341368, stem: 1579388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 341448, stem: 1579758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 341528, stem: 1580128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 341608, stem: 1580498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 341688, stem: 1580868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 341768, stem: 1581238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 341848, stem: 1581608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 341928, stem: 1581978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 342008, stem: 1582348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 342088, stem: 1582718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 342168, stem: 1583088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 342248, stem: 1583458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 342328, stem: 1583828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 342408, stem: 1584198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 342488, stem: 1584568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 342568, stem: 1584938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 342648, stem: 1585308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 342728, stem: 1585678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 342808, stem: 1586048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 342888, stem: 1586418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 342968, stem: 1586788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 343048, stem: 1587158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 343128, stem: 1587528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 343208, stem: 1587898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 343288, stem: 1588268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 343368, stem: 1588638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 343448, stem: 1589008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 343528, stem: 1589378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 343608, stem: 1589748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 343688, stem: 1590118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 343768, stem: 1590488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 343848, stem: 1590858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 343928, stem: 1591228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 344008, stem: 1591598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 344088, stem: 1591968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 344168, stem: 1592338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 344248, stem: 1592708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 344328, stem: 1593078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 344408, stem: 1593448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 344488, stem: 1593818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 344568, stem: 1594188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 344648, stem: 1594558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 344728, stem: 1594928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 344808, stem: 1595298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 344888, stem: 1595668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 344968, stem: 1596038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 345048, stem: 1596408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 345128, stem: 1596778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 345208, stem: 1597148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 345288, stem: 1597518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 345368, stem: 1597888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 345448, stem: 1598258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 345528, stem: 1598628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 345608, stem: 1598998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 345688, stem: 1599368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 345768, stem: 1599738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 345848, stem: 1600108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 345928, stem: 1600478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 346008, stem: 1600848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 346088, stem: 1601218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 346168, stem: 1601588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 346248, stem: 1601958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 346328, stem: 1602328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 346408, stem: 1602698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 346488, stem: 1603068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 346568, stem: 1603438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 346648, stem: 1603808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 346728, stem: 1604178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 346808, stem: 1604548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 346888, stem: 1604918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 346968, stem: 1605288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 347048, stem: 1605658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 347128, stem: 1606028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 347208, stem: 1606398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 347288, stem: 1606768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 347368, stem: 1607138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 347448, stem: 1607508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 347528, stem: 1607878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 347608, stem: 1608248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 347688, stem: 1608618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 347768, stem: 1608988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 347848, stem: 1609358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 347928, stem: 1609728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 348008, stem: 1610098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 348088, stem: 1610468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 348168, stem: 1610838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 348248, stem: 1611208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 348328, stem: 1611578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 348408, stem: 1611948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 348488, stem: 1612318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 348568, stem: 1612688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 348648, stem: 1613058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 348728, stem: 1613428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 348808, stem: 1613798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 348888, stem: 1614168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 348968, stem: 1614538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 349048, stem: 1614908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 349128, stem: 1615278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 349208, stem: 1615648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 349288, stem: 1616018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 349368, stem: 1616388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 349448, stem: 1616758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 349528, stem: 1617128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 349608, stem: 1617498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 349688, stem: 1617868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 349768, stem: 1618238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 349848, stem: 1618608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 349928, stem: 1618978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 350008, stem: 1619348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 350088, stem: 1619718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 350168, stem: 1620088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 350248, stem: 1620458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 350328, stem: 1620828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 350408, stem: 1621198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 350488, stem: 1621568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 350568, stem: 1621938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 350648, stem: 1622308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 350728, stem: 1622678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 350808, stem: 1623048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 350888, stem: 1623418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 350968, stem: 1623788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 351048, stem: 1624158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 351128, stem: 1624528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 351208, stem: 1624898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 351288, stem: 1625268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 351368, stem: 1625638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 351448, stem: 1626008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 351528, stem: 1626378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 351608, stem: 1626748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 351688, stem: 1627118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 351768, stem: 1627488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 351848, stem: 1627858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 351928, stem: 1628228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 352008, stem: 1628598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 352088, stem: 1628968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 352168, stem: 1629338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 352248, stem: 1629708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 352328, stem: 1630078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 352408, stem: 1630448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 352488, stem: 1630818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 352568, stem: 1631188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 352648, stem: 1631558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 352728, stem: 1631928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 352808, stem: 1632298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 352888, stem: 1632668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 352968, stem: 1633038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 353048, stem: 1633408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 353128, stem: 1633778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 353208, stem: 1634148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 353288, stem: 1634518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 353368, stem: 1634888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 353448, stem: 1635258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 353528, stem: 1635628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 353608, stem: 1635998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 353688, stem: 1636368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 353768, stem: 1636738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 353848, stem: 1637108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 353928, stem: 1637478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 354008, stem: 1637848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 354088, stem: 1638218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 354168, stem: 1638588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 354248, stem: 1638958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 354328, stem: 1639328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 354408, stem: 1639698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 354488, stem: 1640068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 354568, stem: 1640438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 354648, stem: 1640808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 354728, stem: 1641178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 354808, stem: 1641548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 354888, stem: 1641918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 354968, stem: 1642288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 355048, stem: 1642658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 355128, stem: 1643028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 355208, stem: 1643398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 355288, stem: 1643768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 355368, stem: 1644138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 355448, stem: 1644508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 355528, stem: 1644878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 355608, stem: 1645248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 355688, stem: 1645618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 355768, stem: 1645988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 355848, stem: 1646358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 355928, stem: 1646728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 356008, stem: 1647098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 356088, stem: 1647468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 356168, stem: 1647838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 356248, stem: 1648208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 356328, stem: 1648578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 356408, stem: 1648948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 356488, stem: 1649318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 356568, stem: 1649688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 356648, stem: 1650058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 356728, stem: 1650428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 356808, stem: 1650798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 356888, stem: 1651168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 356968, stem: 1651538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 357048, stem: 1651908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 357128, stem: 1652278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 357208, stem: 1652648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 357288, stem: 1653018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 357368, stem: 1653388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 357448, stem: 1653758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 357528, stem: 1654128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 357608, stem: 1654498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 357688, stem: 1654868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 357768, stem: 1655238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 357848, stem: 1655608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 357928, stem: 1655978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 358008, stem: 1656348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 358088, stem: 1656718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 358168, stem: 1657088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 358248, stem: 1657458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 358328, stem: 1657828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 358408, stem: 1658198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 358488, stem: 1658568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 358568, stem: 1658938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 358648, stem: 1659308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 358728, stem: 1659678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 358808, stem: 1660048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 358888, stem: 1660418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 358968, stem: 1660788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 359048, stem: 1661158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 359128, stem: 1661528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 359208, stem: 1661898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 359288, stem: 1662268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 359368, stem: 1662638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 359448, stem: 1663008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 359528, stem: 1663378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 359608, stem: 1663748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 359688, stem: 1664118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 359768, stem: 1664488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 359848, stem: 1664858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 359928, stem: 1665228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 360008, stem: 1665598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 360088, stem: 1665968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 360168, stem: 1666338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 360248, stem: 1666708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 360328, stem: 1667078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 360408, stem: 1667448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 360488, stem: 1667818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 360568, stem: 1668188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 360648, stem: 1668558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 360728, stem: 1668928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 360808, stem: 1669298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 360888, stem: 1669668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 360968, stem: 1670038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 361048, stem: 1670408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 361128, stem: 1670778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 361208, stem: 1671148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 361288, stem: 1671518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 361368, stem: 1671888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 361448, stem: 1672258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 361528, stem: 1672628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 361608, stem: 1672998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 361688, stem: 1673368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 361768, stem: 1673738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 361848, stem: 1674108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 361928, stem: 1674478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 362008, stem: 1674848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 362088, stem: 1675218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 362168, stem: 1675588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 362248, stem: 1675958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 362328, stem: 1676328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 362408, stem: 1676698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 362488, stem: 1677068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 362568, stem: 1677438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 362648, stem: 1677808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 362728, stem: 1678178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 362808, stem: 1678548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 362888, stem: 1678918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 362968, stem: 1679288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 363048, stem: 1679658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 363128, stem: 1680028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 363208, stem: 1680398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 363288, stem: 1680768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 363368, stem: 1681138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 363448, stem: 1681508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 363528, stem: 1681878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 363608, stem: 1682248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 363688, stem: 1682618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 363768, stem: 1682988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 363848, stem: 1683358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 363928, stem: 1683728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 364008, stem: 1684098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 364088, stem: 1684468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 364168, stem: 1684838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 364248, stem: 1685208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 364328, stem: 1685578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 364408, stem: 1685948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 364488, stem: 1686318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 364568, stem: 1686688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 364648, stem: 1687058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 364728, stem: 1687428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 364808, stem: 1687798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 364888, stem: 1688168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 364968, stem: 1688538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 365048, stem: 1688908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 365128, stem: 1689278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 365208, stem: 1689648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 365288, stem: 1690018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 365368, stem: 1690388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 365448, stem: 1690758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 365528, stem: 1691128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 365608, stem: 1691498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 365688, stem: 1691868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 365768, stem: 1692238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 365848, stem: 1692608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 365928, stem: 1692978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 366008, stem: 1693348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 366088, stem: 1693718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 366168, stem: 1694088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 366248, stem: 1694458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 366328, stem: 1694828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 366408, stem: 1695198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 366488, stem: 1695568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 366568, stem: 1695938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 366648, stem: 1696308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 366728, stem: 1696678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 366808, stem: 1697048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 366888, stem: 1697418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 366968, stem: 1697788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 367048, stem: 1698158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 367128, stem: 1698528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 367208, stem: 1698898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 367288, stem: 1699268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 367368, stem: 1699638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 367448, stem: 1700008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 367528, stem: 1700378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 367608, stem: 1700748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 367688, stem: 1701118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 367768, stem: 1701488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 367848, stem: 1701858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 367928, stem: 1702228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 368008, stem: 1702598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 368088, stem: 1702968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 368168, stem: 1703338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 368248, stem: 1703708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 368328, stem: 1704078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 368408, stem: 1704448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 368488, stem: 1704818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 368568, stem: 1705188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 368648, stem: 1705558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 368728, stem: 1705928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 368808, stem: 1706298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 368888, stem: 1706668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 368968, stem: 1707038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 369048, stem: 1707408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 369128, stem: 1707778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 369208, stem: 1708148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 369288, stem: 1708518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 369368, stem: 1708888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 369448, stem: 1709258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 369528, stem: 1709628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 369608, stem: 1709998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 369688, stem: 1710368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 369768, stem: 1710738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 369848, stem: 1711108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 369928, stem: 1711478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 370008, stem: 1711848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 370088, stem: 1712218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 370168, stem: 1712588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 370248, stem: 1712958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 370328, stem: 1713328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 370408, stem: 1713698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 370488, stem: 1714068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 370568, stem: 1714438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 370648, stem: 1714808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 370728, stem: 1715178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 370808, stem: 1715548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 370888, stem: 1715918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 370968, stem: 1716288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 371048, stem: 1716658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 371128, stem: 1717028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 371208, stem: 1717398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 371288, stem: 1717768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 371368, stem: 1718138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 371448, stem: 1718508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 371528, stem: 1718878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 371608, stem: 1719248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 371688, stem: 1719618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 371768, stem: 1719988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 371848, stem: 1720358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 371928, stem: 1720728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 372008, stem: 1721098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 372088, stem: 1721468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 372168, stem: 1721838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 372248, stem: 1722208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 372328, stem: 1722578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 372408, stem: 1722948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 372488, stem: 1723318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 372568, stem: 1723688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 372648, stem: 1724058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 372728, stem: 1724428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 372808, stem: 1724798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 372888, stem: 1725168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 372968, stem: 1725538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 373048, stem: 1725908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 373128, stem: 1726278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 373208, stem: 1726648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 373288, stem: 1727018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 373368, stem: 1727388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 373448, stem: 1727758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 373528, stem: 1728128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 373608, stem: 1728498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 373688, stem: 1728868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 373768, stem: 1729238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 373848, stem: 1729608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 373928, stem: 1729978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 374008, stem: 1730348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 374088, stem: 1730718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 374168, stem: 1731088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 374248, stem: 1731458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 374328, stem: 1731828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 374408, stem: 1732198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 374488, stem: 1732568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 374568, stem: 1732938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 374648, stem: 1733308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 374728, stem: 1733678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 374808, stem: 1734048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 374888, stem: 1734418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 374968, stem: 1734788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 375048, stem: 1735158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 375128, stem: 1735528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 375208, stem: 1735898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 375288, stem: 1736268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 375368, stem: 1736638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 375448, stem: 1737008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 375528, stem: 1737378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 375608, stem: 1737748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 375688, stem: 1738118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 375768, stem: 1738488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 375848, stem: 1738858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 375928, stem: 1739228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 376008, stem: 1739598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 376088, stem: 1739968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 376168, stem: 1740338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 376248, stem: 1740708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 376328, stem: 1741078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 376408, stem: 1741448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 376488, stem: 1741818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 376568, stem: 1742188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 376648, stem: 1742558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 376728, stem: 1742928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 376808, stem: 1743298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 376888, stem: 1743668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 376968, stem: 1744038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 377048, stem: 1744408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 377128, stem: 1744778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 377208, stem: 1745148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 377288, stem: 1745518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 377368, stem: 1745888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 377448, stem: 1746258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 377528, stem: 1746628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 377608, stem: 1746998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 377688, stem: 1747368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 377768, stem: 1747738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 377848, stem: 1748108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 377928, stem: 1748478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 378008, stem: 1748848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 378088, stem: 1749218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 378168, stem: 1749588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 378248, stem: 1749958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 378328, stem: 1750328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 378408, stem: 1750698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 378488, stem: 1751068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 378568, stem: 1751438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 378648, stem: 1751808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 378728, stem: 1752178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 378808, stem: 1752548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 378888, stem: 1752918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 378968, stem: 1753288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 379048, stem: 1753658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 379128, stem: 1754028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 379208, stem: 1754398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 379288, stem: 1754768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 379368, stem: 1755138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 379448, stem: 1755508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 379528, stem: 1755878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 379608, stem: 1756248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 379688, stem: 1756618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 379768, stem: 1756988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 379848, stem: 1757358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 379928, stem: 1757728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 380008, stem: 1758098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 380088, stem: 1758468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 380168, stem: 1758838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 380248, stem: 1759208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 380328, stem: 1759578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 380408, stem: 1759948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 380488, stem: 1760318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 380568, stem: 1760688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 380648, stem: 1761058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 380728, stem: 1761428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 380808, stem: 1761798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 380888, stem: 1762168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 380968, stem: 1762538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 381048, stem: 1762908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 381128, stem: 1763278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 381208, stem: 1763648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 381288, stem: 1764018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 381368, stem: 1764388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 381448, stem: 1764758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 381528, stem: 1765128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 381608, stem: 1765498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 381688, stem: 1765868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 381768, stem: 1766238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 381848, stem: 1766608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 381928, stem: 1766978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 382008, stem: 1767348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 382088, stem: 1767718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 382168, stem: 1768088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 382248, stem: 1768458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 382328, stem: 1768828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 382408, stem: 1769198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 382488, stem: 1769568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 382568, stem: 1769938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 382648, stem: 1770308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 382728, stem: 1770678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 382808, stem: 1771048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 382888, stem: 1771418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 382968, stem: 1771788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 383048, stem: 1772158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 383128, stem: 1772528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 383208, stem: 1772898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 383288, stem: 1773268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 383368, stem: 1773638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 383448, stem: 1774008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 383528, stem: 1774378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 383608, stem: 1774748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 383688, stem: 1775118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 383768, stem: 1775488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 383848, stem: 1775858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 383928, stem: 1776228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 384008, stem: 1776598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 384088, stem: 1776968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 384168, stem: 1777338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 384248, stem: 1777708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 384328, stem: 1778078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 384408, stem: 1778448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 384488, stem: 1778818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 384568, stem: 1779188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 384648, stem: 1779558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 384728, stem: 1779928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 384808, stem: 1780298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 384888, stem: 1780668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 384968, stem: 1781038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 385048, stem: 1781408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 385128, stem: 1781778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 385208, stem: 1782148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 385288, stem: 1782518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 385368, stem: 1782888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 385448, stem: 1783258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 385528, stem: 1783628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 385608, stem: 1783998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 385688, stem: 1784368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 385768, stem: 1784738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 385848, stem: 1785108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 385928, stem: 1785478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 386008, stem: 1785848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 386088, stem: 1786218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 386168, stem: 1786588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 386248, stem: 1786958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 386328, stem: 1787328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 386408, stem: 1787698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 386488, stem: 1788068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 386568, stem: 1788438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 386648, stem: 1788808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 386728, stem: 1789178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 386808, stem: 1789548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 386888, stem: 1789918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 386968, stem: 1790288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 387048, stem: 1790658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 387128, stem: 1791028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 387208, stem: 1791398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 387288, stem: 1791768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 387368, stem: 1792138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 387448, stem: 1792508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 387528, stem: 1792878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 387608, stem: 1793248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 387688, stem: 1793618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 387768, stem: 1793988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 387848, stem: 1794358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 387928, stem: 1794728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 388008, stem: 1795098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 388088, stem: 1795468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 388168, stem: 1795838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 388248, stem: 1796208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 388328, stem: 1796578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 388408, stem: 1796948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 388488, stem: 1797318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 388568, stem: 1797688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 388648, stem: 1798058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 388728, stem: 1798428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 388808, stem: 1798798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 388888, stem: 1799168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 388968, stem: 1799538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 389048, stem: 1799908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 389128, stem: 1800278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 389208, stem: 1800648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 389288, stem: 1801018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 389368, stem: 1801388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 389448, stem: 1801758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 389528, stem: 1802128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 389608, stem: 1802498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 389688, stem: 1802868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 389768, stem: 1803238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 389848, stem: 1803608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 389928, stem: 1803978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 390008, stem: 1804348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 390088, stem: 1804718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 390168, stem: 1805088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 390248, stem: 1805458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 390328, stem: 1805828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 390408, stem: 1806198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 390488, stem: 1806568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 390568, stem: 1806938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 390648, stem: 1807308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 390728, stem: 1807678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 390808, stem: 1808048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 390888, stem: 1808418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 390968, stem: 1808788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 391048, stem: 1809158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 391128, stem: 1809528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 391208, stem: 1809898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 391288, stem: 1810268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 391368, stem: 1810638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 391448, stem: 1811008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 391528, stem: 1811378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 391608, stem: 1811748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 391688, stem: 1812118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 391768, stem: 1812488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 391848, stem: 1812858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 391928, stem: 1813228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 392008, stem: 1813598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 392088, stem: 1813968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 392168, stem: 1814338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 392248, stem: 1814708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 392328, stem: 1815078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 392408, stem: 1815448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 392488, stem: 1815818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 392568, stem: 1816188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 392648, stem: 1816558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 392728, stem: 1816928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 392808, stem: 1817298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 392888, stem: 1817668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 392968, stem: 1818038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 393048, stem: 1818408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 393128, stem: 1818778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 393208, stem: 1819148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 393288, stem: 1819518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 393368, stem: 1819888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 393448, stem: 1820258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 393528, stem: 1820628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 393608, stem: 1820998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 393688, stem: 1821368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 393768, stem: 1821738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 393848, stem: 1822108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 393928, stem: 1822478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 394008, stem: 1822848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 394088, stem: 1823218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 394168, stem: 1823588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 394248, stem: 1823958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 394328, stem: 1824328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 394408, stem: 1824698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 394488, stem: 1825068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 394568, stem: 1825438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 394648, stem: 1825808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 394728, stem: 1826178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 394808, stem: 1826548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 394888, stem: 1826918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 394968, stem: 1827288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 395048, stem: 1827658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 395128, stem: 1828028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 395208, stem: 1828398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 395288, stem: 1828768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 395368, stem: 1829138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 395448, stem: 1829508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 395528, stem: 1829878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 395608, stem: 1830248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 395688, stem: 1830618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 395768, stem: 1830988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 395848, stem: 1831358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 395928, stem: 1831728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 396008, stem: 1832098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 396088, stem: 1832468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 396168, stem: 1832838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 396248, stem: 1833208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 396328, stem: 1833578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 396408, stem: 1833948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 396488, stem: 1834318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 396568, stem: 1834688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 396648, stem: 1835058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 396728, stem: 1835428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 396808, stem: 1835798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 396888, stem: 1836168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 396968, stem: 1836538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 397048, stem: 1836908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 397128, stem: 1837278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 397208, stem: 1837648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 397288, stem: 1838018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 397368, stem: 1838388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 397448, stem: 1838758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 397528, stem: 1839128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 397608, stem: 1839498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 397688, stem: 1839868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 397768, stem: 1840238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 397848, stem: 1840608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 397928, stem: 1840978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 398008, stem: 1841348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 398088, stem: 1841718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 398168, stem: 1842088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 398248, stem: 1842458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 398328, stem: 1842828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 398408, stem: 1843198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 398488, stem: 1843568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 398568, stem: 1843938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 398648, stem: 1844308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 398728, stem: 1844678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 398808, stem: 1845048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 398888, stem: 1845418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 398968, stem: 1845788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 399048, stem: 1846158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 399128, stem: 1846528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 399208, stem: 1846898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 399288, stem: 1847268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 399368, stem: 1847638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 399448, stem: 1848008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 399528, stem: 1848378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 399608, stem: 1848748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 399688, stem: 1849118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 399768, stem: 1849488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 399848, stem: 1849858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 399928, stem: 1850228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 400008, stem: 1850598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 400088, stem: 1850968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 400168, stem: 1851338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 400248, stem: 1851708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 400328, stem: 1852078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 400408, stem: 1852448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 400488, stem: 1852818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 400568, stem: 1853188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 400648, stem: 1853558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 400728, stem: 1853928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 400808, stem: 1854298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 400888, stem: 1854668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 400968, stem: 1855038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 401048, stem: 1855408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 401128, stem: 1855778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 401208, stem: 1856148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 401288, stem: 1856518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 401368, stem: 1856888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 401448, stem: 1857258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 401528, stem: 1857628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 401608, stem: 1857998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 401688, stem: 1858368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 401768, stem: 1858738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 401848, stem: 1859108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 401928, stem: 1859478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 402008, stem: 1859848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 402088, stem: 1860218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 402168, stem: 1860588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 402248, stem: 1860958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 402328, stem: 1861328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 402408, stem: 1861698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 402488, stem: 1862068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 402568, stem: 1862438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 402648, stem: 1862808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 402728, stem: 1863178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 402808, stem: 1863548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 402888, stem: 1863918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 402968, stem: 1864288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 403048, stem: 1864658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 403128, stem: 1865028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 403208, stem: 1865398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 403288, stem: 1865768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 403368, stem: 1866138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 403448, stem: 1866508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 403528, stem: 1866878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 403608, stem: 1867248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 403688, stem: 1867618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 403768, stem: 1867988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 403848, stem: 1868358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 403928, stem: 1868728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 404008, stem: 1869098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 404088, stem: 1869468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 404168, stem: 1869838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 404248, stem: 1870208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 404328, stem: 1870578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 404408, stem: 1870948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 404488, stem: 1871318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 404568, stem: 1871688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 404648, stem: 1872058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 404728, stem: 1872428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 404808, stem: 1872798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 404888, stem: 1873168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 404968, stem: 1873538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 405048, stem: 1873908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 405128, stem: 1874278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 405208, stem: 1874648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 405288, stem: 1875018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 405368, stem: 1875388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 405448, stem: 1875758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 405528, stem: 1876128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 405608, stem: 1876498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 405688, stem: 1876868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 405768, stem: 1877238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 405848, stem: 1877608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 405928, stem: 1877978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 406008, stem: 1878348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 406088, stem: 1878718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 406168, stem: 1879088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 406248, stem: 1879458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 406328, stem: 1879828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 406408, stem: 1880198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 406488, stem: 1880568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 406568, stem: 1880938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 406648, stem: 1881308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 406728, stem: 1881678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 406808, stem: 1882048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 406888, stem: 1882418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 406968, stem: 1882788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 407048, stem: 1883158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 407128, stem: 1883528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 407208, stem: 1883898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 407288, stem: 1884268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 407368, stem: 1884638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 407448, stem: 1885008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 407528, stem: 1885378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 407608, stem: 1885748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 407688, stem: 1886118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 407768, stem: 1886488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 407848, stem: 1886858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 407928, stem: 1887228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 408008, stem: 1887598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 408088, stem: 1887968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 408168, stem: 1888338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 408248, stem: 1888708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 408328, stem: 1889078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 408408, stem: 1889448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 408488, stem: 1889818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 408568, stem: 1890188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 408648, stem: 1890558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 408728, stem: 1890928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 408808, stem: 1891298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 408888, stem: 1891668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 408968, stem: 1892038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 409048, stem: 1892408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 409128, stem: 1892778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 409208, stem: 1893148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 409288, stem: 1893518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 409368, stem: 1893888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 409448, stem: 1894258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 409528, stem: 1894628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 409608, stem: 1894998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 409688, stem: 1895368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 409768, stem: 1895738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 409848, stem: 1896108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 409928, stem: 1896478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 410008, stem: 1896848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 410088, stem: 1897218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 410168, stem: 1897588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 410248, stem: 1897958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 410328, stem: 1898328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 410408, stem: 1898698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 410488, stem: 1899068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 410568, stem: 1899438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 410648, stem: 1899808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 410728, stem: 1900178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 410808, stem: 1900548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 410888, stem: 1900918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 410968, stem: 1901288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 411048, stem: 1901658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 411128, stem: 1902028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 411208, stem: 1902398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 411288, stem: 1902768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 411368, stem: 1903138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 411448, stem: 1903508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 411528, stem: 1903878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 411608, stem: 1904248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 411688, stem: 1904618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 411768, stem: 1904988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 411848, stem: 1905358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 411928, stem: 1905728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 412008, stem: 1906098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 412088, stem: 1906468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 412168, stem: 1906838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 412248, stem: 1907208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 412328, stem: 1907578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 412408, stem: 1907948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 412488, stem: 1908318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 412568, stem: 1908688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 412648, stem: 1909058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 412728, stem: 1909428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 412808, stem: 1909798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 412888, stem: 1910168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 412968, stem: 1910538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 413048, stem: 1910908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 413128, stem: 1911278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 413208, stem: 1911648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 413288, stem: 1912018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 413368, stem: 1912388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 413448, stem: 1912758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 413528, stem: 1913128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 413608, stem: 1913498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 413688, stem: 1913868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 413768, stem: 1914238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 413848, stem: 1914608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 413928, stem: 1914978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 414008, stem: 1915348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 414088, stem: 1915718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 414168, stem: 1916088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 414248, stem: 1916458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 414328, stem: 1916828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 414408, stem: 1917198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 414488, stem: 1917568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 414568, stem: 1917938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 414648, stem: 1918308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 414728, stem: 1918678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 414808, stem: 1919048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 414888, stem: 1919418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 414968, stem: 1919788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 415048, stem: 1920158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 415128, stem: 1920528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 415208, stem: 1920898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 415288, stem: 1921268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 415368, stem: 1921638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 415448, stem: 1922008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 415528, stem: 1922378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 415608, stem: 1922748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 415688, stem: 1923118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 415768, stem: 1923488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 415848, stem: 1923858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 415928, stem: 1924228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 416008, stem: 1924598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 416088, stem: 1924968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 416168, stem: 1925338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 416248, stem: 1925708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 416328, stem: 1926078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 416408, stem: 1926448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 416488, stem: 1926818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 416568, stem: 1927188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 416648, stem: 1927558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 416728, stem: 1927928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 416808, stem: 1928298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 416888, stem: 1928668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 416968, stem: 1929038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 417048, stem: 1929408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 417128, stem: 1929778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 417208, stem: 1930148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 417288, stem: 1930518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 417368, stem: 1930888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 417448, stem: 1931258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 417528, stem: 1931628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 417608, stem: 1931998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 417688, stem: 1932368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 417768, stem: 1932738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 417848, stem: 1933108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 417928, stem: 1933478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 418008, stem: 1933848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 418088, stem: 1934218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 418168, stem: 1934588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 418248, stem: 1934958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 418328, stem: 1935328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 418408, stem: 1935698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 418488, stem: 1936068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 418568, stem: 1936438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 418648, stem: 1936808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 418728, stem: 1937178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 418808, stem: 1937548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 418888, stem: 1937918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 418968, stem: 1938288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 419048, stem: 1938658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 419128, stem: 1939028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 419208, stem: 1939398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 419288, stem: 1939768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 419368, stem: 1940138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 419448, stem: 1940508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 419528, stem: 1940878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 419608, stem: 1941248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 419688, stem: 1941618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 419768, stem: 1941988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 419848, stem: 1942358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 419928, stem: 1942728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 420008, stem: 1943098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 420088, stem: 1943468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 420168, stem: 1943838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 420248, stem: 1944208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 420328, stem: 1944578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 420408, stem: 1944948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 420488, stem: 1945318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 420568, stem: 1945688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 420648, stem: 1946058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 420728, stem: 1946428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 420808, stem: 1946798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 420888, stem: 1947168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 420968, stem: 1947538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 421048, stem: 1947908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 421128, stem: 1948278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 421208, stem: 1948648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 421288, stem: 1949018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 421368, stem: 1949388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 421448, stem: 1949758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 421528, stem: 1950128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 421608, stem: 1950498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 421688, stem: 1950868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 421768, stem: 1951238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 421848, stem: 1951608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 421928, stem: 1951978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 422008, stem: 1952348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 422088, stem: 1952718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 422168, stem: 1953088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 422248, stem: 1953458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 422328, stem: 1953828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 422408, stem: 1954198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 422488, stem: 1954568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 422568, stem: 1954938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 422648, stem: 1955308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 422728, stem: 1955678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 422808, stem: 1956048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 422888, stem: 1956418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 422968, stem: 1956788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 423048, stem: 1957158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 423128, stem: 1957528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 423208, stem: 1957898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 423288, stem: 1958268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 423368, stem: 1958638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 423448, stem: 1959008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 423528, stem: 1959378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 423608, stem: 1959748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 423688, stem: 1960118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 423768, stem: 1960488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 423848, stem: 1960858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 423928, stem: 1961228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 424008, stem: 1961598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 424088, stem: 1961968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 424168, stem: 1962338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 424248, stem: 1962708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 424328, stem: 1963078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 424408, stem: 1963448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 424488, stem: 1963818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 424568, stem: 1964188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 424648, stem: 1964558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 424728, stem: 1964928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 424808, stem: 1965298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 424888, stem: 1965668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 424968, stem: 1966038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 425048, stem: 1966408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 425128, stem: 1966778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 425208, stem: 1967148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 425288, stem: 1967518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 425368, stem: 1967888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 425448, stem: 1968258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 425528, stem: 1968628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 425608, stem: 1968998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 425688, stem: 1969368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 425768, stem: 1969738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 425848, stem: 1970108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 425928, stem: 1970478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 426008, stem: 1970848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 426088, stem: 1971218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 426168, stem: 1971588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 426248, stem: 1971958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 426328, stem: 1972328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 426408, stem: 1972698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 426488, stem: 1973068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 426568, stem: 1973438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 426648, stem: 1973808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 426728, stem: 1974178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 426808, stem: 1974548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 426888, stem: 1974918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 426968, stem: 1975288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 427048, stem: 1975658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 427128, stem: 1976028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 427208, stem: 1976398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 427288, stem: 1976768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 427368, stem: 1977138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 427448, stem: 1977508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 427528, stem: 1977878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 427608, stem: 1978248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 427688, stem: 1978618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 427768, stem: 1978988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 427848, stem: 1979358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 427928, stem: 1979728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 428008, stem: 1980098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 428088, stem: 1980468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 428168, stem: 1980838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 428248, stem: 1981208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 428328, stem: 1981578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 428408, stem: 1981948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 428488, stem: 1982318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 428568, stem: 1982688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 428648, stem: 1983058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 428728, stem: 1983428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 428808, stem: 1983798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 428888, stem: 1984168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 428968, stem: 1984538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 429048, stem: 1984908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 429128, stem: 1985278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 429208, stem: 1985648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 429288, stem: 1986018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 429368, stem: 1986388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 429448, stem: 1986758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 429528, stem: 1987128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 429608, stem: 1987498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 429688, stem: 1987868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 429768, stem: 1988238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 429848, stem: 1988608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 429928, stem: 1988978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 430008, stem: 1989348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 430088, stem: 1989718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 430168, stem: 1990088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 430248, stem: 1990458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 430328, stem: 1990828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 430408, stem: 1991198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 430488, stem: 1991568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 430568, stem: 1991938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 430648, stem: 1992308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 430728, stem: 1992678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 430808, stem: 1993048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 430888, stem: 1993418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 430968, stem: 1993788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 431048, stem: 1994158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 431128, stem: 1994528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 431208, stem: 1994898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 431288, stem: 1995268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 431368, stem: 1995638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 431448, stem: 1996008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 431528, stem: 1996378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 431608, stem: 1996748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 431688, stem: 1997118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 431768, stem: 1997488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 431848, stem: 1997858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 431928, stem: 1998228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 432008, stem: 1998598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 432088, stem: 1998968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 432168, stem: 1999338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 432248, stem: 1999708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 432328, stem: 2000078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 432408, stem: 2000448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 432488, stem: 2000818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 432568, stem: 2001188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 432648, stem: 2001558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 432728, stem: 2001928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 432808, stem: 2002298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 432888, stem: 2002668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 432968, stem: 2003038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 433048, stem: 2003408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 433128, stem: 2003778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 433208, stem: 2004148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 433288, stem: 2004518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 433368, stem: 2004888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 433448, stem: 2005258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 433528, stem: 2005628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 433608, stem: 2005998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 433688, stem: 2006368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 433768, stem: 2006738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 433848, stem: 2007108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 433928, stem: 2007478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 434008, stem: 2007848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 434088, stem: 2008218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 434168, stem: 2008588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 434248, stem: 2008958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 434328, stem: 2009328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 434408, stem: 2009698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 434488, stem: 2010068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 434568, stem: 2010438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 434648, stem: 2010808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 434728, stem: 2011178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 434808, stem: 2011548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 434888, stem: 2011918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 434968, stem: 2012288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 435048, stem: 2012658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 435128, stem: 2013028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 435208, stem: 2013398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 435288, stem: 2013768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 435368, stem: 2014138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 435448, stem: 2014508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 435528, stem: 2014878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 435608, stem: 2015248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 435688, stem: 2015618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 435768, stem: 2015988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 435848, stem: 2016358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 435928, stem: 2016728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 436008, stem: 2017098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 436088, stem: 2017468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 436168, stem: 2017838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 436248, stem: 2018208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 436328, stem: 2018578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 436408, stem: 2018948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 436488, stem: 2019318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 436568, stem: 2019688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 436648, stem: 2020058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 436728, stem: 2020428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 436808, stem: 2020798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 436888, stem: 2021168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 436968, stem: 2021538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 437048, stem: 2021908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 437128, stem: 2022278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 437208, stem: 2022648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 437288, stem: 2023018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 437368, stem: 2023388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 437448, stem: 2023758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 437528, stem: 2024128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 437608, stem: 2024498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 437688, stem: 2024868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 437768, stem: 2025238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 437848, stem: 2025608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 437928, stem: 2025978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 438008, stem: 2026348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 438088, stem: 2026718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 438168, stem: 2027088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 438248, stem: 2027458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 438328, stem: 2027828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 438408, stem: 2028198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 438488, stem: 2028568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 438568, stem: 2028938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 438648, stem: 2029308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 438728, stem: 2029678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 438808, stem: 2030048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 438888, stem: 2030418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 438968, stem: 2030788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 439048, stem: 2031158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 439128, stem: 2031528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 439208, stem: 2031898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 439288, stem: 2032268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 439368, stem: 2032638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 439448, stem: 2033008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 439528, stem: 2033378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 439608, stem: 2033748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 439688, stem: 2034118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 439768, stem: 2034488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 439848, stem: 2034858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 439928, stem: 2035228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 440008, stem: 2035598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 440088, stem: 2035968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 440168, stem: 2036338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 440248, stem: 2036708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 440328, stem: 2037078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 440408, stem: 2037448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 440488, stem: 2037818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 440568, stem: 2038188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 440648, stem: 2038558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 440728, stem: 2038928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 440808, stem: 2039298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 440888, stem: 2039668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 440968, stem: 2040038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 441048, stem: 2040408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 441128, stem: 2040778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 441208, stem: 2041148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 441288, stem: 2041518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 441368, stem: 2041888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 441448, stem: 2042258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 441528, stem: 2042628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 441608, stem: 2042998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 441688, stem: 2043368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 441768, stem: 2043738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 441848, stem: 2044108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 441928, stem: 2044478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 442008, stem: 2044848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 442088, stem: 2045218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 442168, stem: 2045588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 442248, stem: 2045958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 442328, stem: 2046328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 442408, stem: 2046698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 442488, stem: 2047068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 442568, stem: 2047438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 442648, stem: 2047808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 442728, stem: 2048178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 442808, stem: 2048548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 442888, stem: 2048918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 442968, stem: 2049288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 443048, stem: 2049658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 443128, stem: 2050028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 443208, stem: 2050398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 443288, stem: 2050768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 443368, stem: 2051138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 443448, stem: 2051508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 443528, stem: 2051878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 443608, stem: 2052248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 443688, stem: 2052618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 443768, stem: 2052988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 443848, stem: 2053358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 443928, stem: 2053728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 444008, stem: 2054098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 444088, stem: 2054468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 444168, stem: 2054838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 444248, stem: 2055208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 444328, stem: 2055578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 444408, stem: 2055948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 444488, stem: 2056318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 444568, stem: 2056688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 444648, stem: 2057058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 444728, stem: 2057428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 444808, stem: 2057798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 444888, stem: 2058168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 444968, stem: 2058538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 445048, stem: 2058908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 445128, stem: 2059278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 445208, stem: 2059648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 445288, stem: 2060018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 445368, stem: 2060388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 445448, stem: 2060758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 445528, stem: 2061128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 445608, stem: 2061498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 445688, stem: 2061868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 445768, stem: 2062238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 445848, stem: 2062608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 445928, stem: 2062978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 446008, stem: 2063348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 446088, stem: 2063718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 446168, stem: 2064088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 446248, stem: 2064458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 446328, stem: 2064828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 446408, stem: 2065198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 446488, stem: 2065568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 446568, stem: 2065938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 446648, stem: 2066308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 446728, stem: 2066678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 446808, stem: 2067048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 446888, stem: 2067418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 446968, stem: 2067788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 447048, stem: 2068158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 447128, stem: 2068528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 447208, stem: 2068898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 447288, stem: 2069268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 447368, stem: 2069638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 447448, stem: 2070008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 447528, stem: 2070378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 447608, stem: 2070748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 447688, stem: 2071118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 447768, stem: 2071488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 447848, stem: 2071858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 447928, stem: 2072228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 448008, stem: 2072598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 448088, stem: 2072968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 448168, stem: 2073338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 448248, stem: 2073708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 448328, stem: 2074078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 448408, stem: 2074448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 448488, stem: 2074818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 448568, stem: 2075188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 448648, stem: 2075558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 448728, stem: 2075928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 448808, stem: 2076298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 448888, stem: 2076668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 448968, stem: 2077038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 449048, stem: 2077408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 449128, stem: 2077778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 449208, stem: 2078148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 449288, stem: 2078518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 449368, stem: 2078888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 449448, stem: 2079258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 449528, stem: 2079628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 449608, stem: 2079998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 449688, stem: 2080368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 449768, stem: 2080738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 449848, stem: 2081108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 449928, stem: 2081478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 450008, stem: 2081848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 450088, stem: 2082218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 450168, stem: 2082588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 450248, stem: 2082958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 450328, stem: 2083328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 450408, stem: 2083698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 450488, stem: 2084068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 450568, stem: 2084438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 450648, stem: 2084808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 450728, stem: 2085178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 450808, stem: 2085548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 450888, stem: 2085918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 450968, stem: 2086288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 451048, stem: 2086658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 451128, stem: 2087028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 451208, stem: 2087398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 451288, stem: 2087768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 451368, stem: 2088138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 451448, stem: 2088508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 451528, stem: 2088878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 451608, stem: 2089248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 451688, stem: 2089618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 451768, stem: 2089988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 451848, stem: 2090358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 451928, stem: 2090728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 452008, stem: 2091098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 452088, stem: 2091468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 452168, stem: 2091838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 452248, stem: 2092208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 452328, stem: 2092578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 452408, stem: 2092948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 452488, stem: 2093318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 452568, stem: 2093688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 452648, stem: 2094058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 452728, stem: 2094428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 452808, stem: 2094798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 452888, stem: 2095168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 452968, stem: 2095538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 453048, stem: 2095908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 453128, stem: 2096278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 453208, stem: 2096648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 453288, stem: 2097018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 453368, stem: 2097388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 453448, stem: 2097758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 453528, stem: 2098128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 453608, stem: 2098498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 453688, stem: 2098868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 453768, stem: 2099238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 453848, stem: 2099608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 453928, stem: 2099978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 454008, stem: 2100348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 454088, stem: 2100718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 454168, stem: 2101088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 454248, stem: 2101458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 454328, stem: 2101828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 454408, stem: 2102198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 454488, stem: 2102568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 454568, stem: 2102938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 454648, stem: 2103308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 454728, stem: 2103678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 454808, stem: 2104048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 454888, stem: 2104418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 454968, stem: 2104788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 455048, stem: 2105158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 455128, stem: 2105528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 455208, stem: 2105898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 455288, stem: 2106268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 455368, stem: 2106638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 455448, stem: 2107008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 455528, stem: 2107378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 455608, stem: 2107748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 455688, stem: 2108118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 455768, stem: 2108488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 455848, stem: 2108858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 455928, stem: 2109228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 456008, stem: 2109598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 456088, stem: 2109968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 456168, stem: 2110338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 456248, stem: 2110708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 456328, stem: 2111078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 456408, stem: 2111448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 456488, stem: 2111818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 456568, stem: 2112188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 456648, stem: 2112558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 456728, stem: 2112928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 456808, stem: 2113298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 456888, stem: 2113668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 456968, stem: 2114038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 457048, stem: 2114408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 457128, stem: 2114778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 457208, stem: 2115148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 457288, stem: 2115518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 457368, stem: 2115888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 457448, stem: 2116258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 457528, stem: 2116628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 457608, stem: 2116998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 457688, stem: 2117368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 457768, stem: 2117738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 457848, stem: 2118108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 457928, stem: 2118478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 458008, stem: 2118848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 458088, stem: 2119218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 458168, stem: 2119588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 458248, stem: 2119958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 458328, stem: 2120328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 458408, stem: 2120698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 458488, stem: 2121068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 458568, stem: 2121438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 458648, stem: 2121808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 458728, stem: 2122178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 458808, stem: 2122548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 458888, stem: 2122918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 458968, stem: 2123288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 459048, stem: 2123658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 459128, stem: 2124028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 459208, stem: 2124398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 459288, stem: 2124768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 459368, stem: 2125138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 459448, stem: 2125508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 459528, stem: 2125878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 459608, stem: 2126248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 459688, stem: 2126618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 459768, stem: 2126988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 459848, stem: 2127358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 459928, stem: 2127728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 460008, stem: 2128098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 460088, stem: 2128468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 460168, stem: 2128838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 460248, stem: 2129208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 460328, stem: 2129578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 460408, stem: 2129948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 460488, stem: 2130318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 460568, stem: 2130688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 460648, stem: 2131058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 460728, stem: 2131428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 460808, stem: 2131798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 460888, stem: 2132168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 460968, stem: 2132538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 461048, stem: 2132908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 461128, stem: 2133278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 461208, stem: 2133648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 461288, stem: 2134018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 461368, stem: 2134388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 461448, stem: 2134758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 461528, stem: 2135128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 461608, stem: 2135498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 461688, stem: 2135868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 461768, stem: 2136238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 461848, stem: 2136608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 461928, stem: 2136978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 462008, stem: 2137348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 462088, stem: 2137718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 462168, stem: 2138088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 462248, stem: 2138458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 462328, stem: 2138828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 462408, stem: 2139198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 462488, stem: 2139568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 462568, stem: 2139938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 462648, stem: 2140308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 462728, stem: 2140678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 462808, stem: 2141048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 462888, stem: 2141418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 462968, stem: 2141788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 463048, stem: 2142158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 463128, stem: 2142528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 463208, stem: 2142898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 463288, stem: 2143268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 463368, stem: 2143638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 463448, stem: 2144008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 463528, stem: 2144378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 463608, stem: 2144748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 463688, stem: 2145118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 463768, stem: 2145488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 463848, stem: 2145858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 463928, stem: 2146228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 464008, stem: 2146598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 464088, stem: 2146968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 464168, stem: 2147338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 464248, stem: 2147708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 464328, stem: 2148078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 464408, stem: 2148448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 464488, stem: 2148818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 464568, stem: 2149188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 464648, stem: 2149558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 464728, stem: 2149928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 464808, stem: 2150298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 464888, stem: 2150668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 464968, stem: 2151038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 465048, stem: 2151408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 465128, stem: 2151778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 465208, stem: 2152148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 465288, stem: 2152518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 465368, stem: 2152888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 465448, stem: 2153258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 465528, stem: 2153628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 465608, stem: 2153998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 465688, stem: 2154368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 465768, stem: 2154738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 465848, stem: 2155108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 465928, stem: 2155478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 466008, stem: 2155848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 466088, stem: 2156218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 466168, stem: 2156588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 466248, stem: 2156958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 466328, stem: 2157328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 466408, stem: 2157698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 466488, stem: 2158068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 466568, stem: 2158438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 466648, stem: 2158808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 466728, stem: 2159178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 466808, stem: 2159548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 466888, stem: 2159918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 466968, stem: 2160288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 467048, stem: 2160658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 467128, stem: 2161028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 467208, stem: 2161398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 467288, stem: 2161768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 467368, stem: 2162138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 467448, stem: 2162508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 467528, stem: 2162878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 467608, stem: 2163248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 467688, stem: 2163618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 467768, stem: 2163988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 467848, stem: 2164358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 467928, stem: 2164728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 468008, stem: 2165098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 468088, stem: 2165468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 468168, stem: 2165838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 468248, stem: 2166208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 468328, stem: 2166578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 468408, stem: 2166948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 468488, stem: 2167318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 468568, stem: 2167688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 468648, stem: 2168058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 468728, stem: 2168428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 468808, stem: 2168798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 468888, stem: 2169168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 468968, stem: 2169538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 469048, stem: 2169908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 469128, stem: 2170278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 469208, stem: 2170648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 469288, stem: 2171018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 469368, stem: 2171388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 469448, stem: 2171758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 469528, stem: 2172128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 469608, stem: 2172498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 469688, stem: 2172868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 469768, stem: 2173238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 469848, stem: 2173608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 469928, stem: 2173978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 470008, stem: 2174348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 470088, stem: 2174718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 470168, stem: 2175088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 470248, stem: 2175458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 470328, stem: 2175828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 470408, stem: 2176198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 470488, stem: 2176568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 470568, stem: 2176938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 470648, stem: 2177308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 470728, stem: 2177678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 470808, stem: 2178048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 470888, stem: 2178418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 470968, stem: 2178788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 471048, stem: 2179158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 471128, stem: 2179528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 471208, stem: 2179898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 471288, stem: 2180268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 471368, stem: 2180638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 471448, stem: 2181008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 471528, stem: 2181378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 471608, stem: 2181748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 471688, stem: 2182118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 471768, stem: 2182488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 471848, stem: 2182858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 471928, stem: 2183228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 472008, stem: 2183598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 472088, stem: 2183968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 472168, stem: 2184338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 472248, stem: 2184708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 472328, stem: 2185078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 472408, stem: 2185448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 472488, stem: 2185818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 472568, stem: 2186188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 472648, stem: 2186558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 472728, stem: 2186928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 472808, stem: 2187298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 472888, stem: 2187668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 472968, stem: 2188038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 473048, stem: 2188408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 473128, stem: 2188778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 473208, stem: 2189148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 473288, stem: 2189518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 473368, stem: 2189888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 473448, stem: 2190258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 473528, stem: 2190628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 473608, stem: 2190998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 473688, stem: 2191368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 473768, stem: 2191738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 473848, stem: 2192108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 473928, stem: 2192478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 474008, stem: 2192848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 474088, stem: 2193218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 474168, stem: 2193588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 474248, stem: 2193958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 474328, stem: 2194328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 474408, stem: 2194698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 474488, stem: 2195068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 474568, stem: 2195438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 474648, stem: 2195808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 474728, stem: 2196178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 474808, stem: 2196548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 474888, stem: 2196918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 474968, stem: 2197288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 475048, stem: 2197658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 475128, stem: 2198028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 475208, stem: 2198398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 475288, stem: 2198768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 475368, stem: 2199138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 475448, stem: 2199508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 475528, stem: 2199878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 475608, stem: 2200248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 475688, stem: 2200618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 475768, stem: 2200988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 475848, stem: 2201358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 475928, stem: 2201728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 476008, stem: 2202098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 476088, stem: 2202468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 476168, stem: 2202838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 476248, stem: 2203208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 476328, stem: 2203578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 476408, stem: 2203948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 476488, stem: 2204318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 476568, stem: 2204688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 476648, stem: 2205058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 476728, stem: 2205428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 476808, stem: 2205798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 476888, stem: 2206168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 476968, stem: 2206538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 477048, stem: 2206908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 477128, stem: 2207278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 477208, stem: 2207648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 477288, stem: 2208018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 477368, stem: 2208388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 477448, stem: 2208758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 477528, stem: 2209128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 477608, stem: 2209498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 477688, stem: 2209868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 477768, stem: 2210238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 477848, stem: 2210608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 477928, stem: 2210978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 478008, stem: 2211348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 478088, stem: 2211718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 478168, stem: 2212088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 478248, stem: 2212458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 478328, stem: 2212828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 478408, stem: 2213198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 478488, stem: 2213568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 478568, stem: 2213938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 478648, stem: 2214308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 478728, stem: 2214678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 478808, stem: 2215048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 478888, stem: 2215418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 478968, stem: 2215788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 479048, stem: 2216158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 479128, stem: 2216528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 479208, stem: 2216898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 479288, stem: 2217268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 479368, stem: 2217638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 479448, stem: 2218008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 479528, stem: 2218378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 479608, stem: 2218748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 479688, stem: 2219118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 479768, stem: 2219488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 479848, stem: 2219858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 479928, stem: 2220228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 480008, stem: 2220598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 480088, stem: 2220968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 480168, stem: 2221338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 480248, stem: 2221708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 480328, stem: 2222078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 480408, stem: 2222448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 480488, stem: 2222818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 480568, stem: 2223188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 480648, stem: 2223558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 480728, stem: 2223928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 480808, stem: 2224298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 480888, stem: 2224668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 480968, stem: 2225038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 481048, stem: 2225408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 481128, stem: 2225778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 481208, stem: 2226148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 481288, stem: 2226518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 481368, stem: 2226888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 481448, stem: 2227258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 481528, stem: 2227628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 481608, stem: 2227998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 481688, stem: 2228368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 481768, stem: 2228738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 481848, stem: 2229108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 481928, stem: 2229478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 482008, stem: 2229848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 482088, stem: 2230218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 482168, stem: 2230588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 482248, stem: 2230958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 482328, stem: 2231328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 482408, stem: 2231698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 482488, stem: 2232068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 482568, stem: 2232438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 482648, stem: 2232808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 482728, stem: 2233178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 482808, stem: 2233548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 482888, stem: 2233918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 482968, stem: 2234288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 483048, stem: 2234658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 483128, stem: 2235028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 483208, stem: 2235398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 483288, stem: 2235768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 483368, stem: 2236138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 483448, stem: 2236508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 483528, stem: 2236878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 483608, stem: 2237248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 483688, stem: 2237618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 483768, stem: 2237988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 483848, stem: 2238358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 483928, stem: 2238728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 484008, stem: 2239098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 484088, stem: 2239468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 484168, stem: 2239838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 484248, stem: 2240208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 484328, stem: 2240578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 484408, stem: 2240948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 484488, stem: 2241318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 484568, stem: 2241688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 484648, stem: 2242058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 484728, stem: 2242428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 484808, stem: 2242798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 484888, stem: 2243168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 484968, stem: 2243538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 485048, stem: 2243908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 485128, stem: 2244278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 485208, stem: 2244648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 485288, stem: 2245018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 485368, stem: 2245388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 485448, stem: 2245758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 485528, stem: 2246128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 485608, stem: 2246498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 485688, stem: 2246868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 485768, stem: 2247238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 485848, stem: 2247608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 485928, stem: 2247978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 486008, stem: 2248348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 486088, stem: 2248718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 486168, stem: 2249088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 486248, stem: 2249458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 486328, stem: 2249828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 486408, stem: 2250198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 486488, stem: 2250568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 486568, stem: 2250938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 486648, stem: 2251308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 486728, stem: 2251678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 486808, stem: 2252048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 486888, stem: 2252418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 486968, stem: 2252788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 487048, stem: 2253158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 487128, stem: 2253528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 487208, stem: 2253898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 487288, stem: 2254268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 487368, stem: 2254638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 487448, stem: 2255008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 487528, stem: 2255378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 487608, stem: 2255748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 487688, stem: 2256118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 487768, stem: 2256488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 487848, stem: 2256858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 487928, stem: 2257228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 488008, stem: 2257598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 488088, stem: 2257968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 488168, stem: 2258338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 488248, stem: 2258708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 488328, stem: 2259078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 488408, stem: 2259448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 488488, stem: 2259818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 488568, stem: 2260188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 488648, stem: 2260558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 488728, stem: 2260928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 488808, stem: 2261298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 488888, stem: 2261668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 488968, stem: 2262038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 489048, stem: 2262408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 489128, stem: 2262778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 489208, stem: 2263148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 489288, stem: 2263518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 489368, stem: 2263888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 489448, stem: 2264258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 489528, stem: 2264628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 489608, stem: 2264998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 489688, stem: 2265368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 489768, stem: 2265738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 489848, stem: 2266108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 489928, stem: 2266478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 490008, stem: 2266848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 490088, stem: 2267218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 490168, stem: 2267588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 490248, stem: 2267958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 490328, stem: 2268328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 490408, stem: 2268698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 490488, stem: 2269068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 490568, stem: 2269438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 490648, stem: 2269808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 490728, stem: 2270178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 490808, stem: 2270548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 490888, stem: 2270918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 490968, stem: 2271288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 491048, stem: 2271658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 491128, stem: 2272028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 491208, stem: 2272398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 491288, stem: 2272768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 491368, stem: 2273138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 491448, stem: 2273508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 491528, stem: 2273878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 491608, stem: 2274248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 491688, stem: 2274618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 491768, stem: 2274988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 491848, stem: 2275358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 491928, stem: 2275728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 492008, stem: 2276098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 492088, stem: 2276468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 492168, stem: 2276838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 492248, stem: 2277208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 492328, stem: 2277578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 492408, stem: 2277948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 492488, stem: 2278318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 492568, stem: 2278688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 492648, stem: 2279058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 492728, stem: 2279428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 492808, stem: 2279798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 492888, stem: 2280168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 492968, stem: 2280538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 493048, stem: 2280908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 493128, stem: 2281278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 493208, stem: 2281648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 493288, stem: 2282018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 493368, stem: 2282388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 493448, stem: 2282758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 493528, stem: 2283128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 493608, stem: 2283498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 493688, stem: 2283868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 493768, stem: 2284238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 493848, stem: 2284608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 493928, stem: 2284978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 494008, stem: 2285348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 494088, stem: 2285718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 494168, stem: 2286088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 494248, stem: 2286458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 494328, stem: 2286828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 494408, stem: 2287198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 494488, stem: 2287568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 494568, stem: 2287938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 494648, stem: 2288308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 494728, stem: 2288678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 494808, stem: 2289048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 494888, stem: 2289418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 494968, stem: 2289788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 495048, stem: 2290158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 495128, stem: 2290528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 495208, stem: 2290898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 495288, stem: 2291268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 495368, stem: 2291638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 495448, stem: 2292008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 495528, stem: 2292378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 495608, stem: 2292748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 495688, stem: 2293118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 495768, stem: 2293488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 495848, stem: 2293858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 495928, stem: 2294228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 496008, stem: 2294598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 496088, stem: 2294968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 496168, stem: 2295338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 496248, stem: 2295708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 496328, stem: 2296078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 496408, stem: 2296448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 496488, stem: 2296818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 496568, stem: 2297188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 496648, stem: 2297558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 496728, stem: 2297928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 496808, stem: 2298298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 496888, stem: 2298668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 496968, stem: 2299038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 497048, stem: 2299408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 497128, stem: 2299778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 497208, stem: 2300148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 497288, stem: 2300518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 497368, stem: 2300888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 497448, stem: 2301258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 497528, stem: 2301628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 497608, stem: 2301998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 497688, stem: 2302368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 497768, stem: 2302738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 497848, stem: 2303108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 497928, stem: 2303478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 498008, stem: 2303848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 498088, stem: 2304218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 498168, stem: 2304588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 498248, stem: 2304958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 498328, stem: 2305328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 498408, stem: 2305698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 498488, stem: 2306068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 498568, stem: 2306438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 498648, stem: 2306808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 498728, stem: 2307178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 498808, stem: 2307548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 498888, stem: 2307918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 498968, stem: 2308288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 499048, stem: 2308658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 499128, stem: 2309028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 499208, stem: 2309398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 499288, stem: 2309768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 499368, stem: 2310138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 499448, stem: 2310508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 499528, stem: 2310878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 499608, stem: 2311248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 499688, stem: 2311618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 499768, stem: 2311988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 499848, stem: 2312358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 499928, stem: 2312728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 500008, stem: 2313098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 500088, stem: 2313468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 500168, stem: 2313838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 500248, stem: 2314208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 500328, stem: 2314578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 500408, stem: 2314948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 500488, stem: 2315318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 500568, stem: 2315688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 500648, stem: 2316058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 500728, stem: 2316428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 500808, stem: 2316798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 500888, stem: 2317168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 500968, stem: 2317538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 501048, stem: 2317908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 501128, stem: 2318278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 501208, stem: 2318648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 501288, stem: 2319018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 501368, stem: 2319388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 501448, stem: 2319758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 501528, stem: 2320128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 501608, stem: 2320498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 501688, stem: 2320868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 501768, stem: 2321238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 501848, stem: 2321608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 501928, stem: 2321978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 502008, stem: 2322348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 502088, stem: 2322718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 502168, stem: 2323088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 502248, stem: 2323458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 502328, stem: 2323828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 502408, stem: 2324198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 502488, stem: 2324568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 502568, stem: 2324938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 502648, stem: 2325308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 502728, stem: 2325678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 502808, stem: 2326048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 502888, stem: 2326418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 502968, stem: 2326788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 503048, stem: 2327158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 503128, stem: 2327528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 503208, stem: 2327898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 503288, stem: 2328268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 503368, stem: 2328638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 503448, stem: 2329008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 503528, stem: 2329378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 503608, stem: 2329748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 503688, stem: 2330118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 503768, stem: 2330488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 503848, stem: 2330858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 503928, stem: 2331228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 504008, stem: 2331598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 504088, stem: 2331968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 504168, stem: 2332338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 504248, stem: 2332708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 504328, stem: 2333078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 504408, stem: 2333448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 504488, stem: 2333818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 504568, stem: 2334188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 504648, stem: 2334558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 504728, stem: 2334928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 504808, stem: 2335298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 504888, stem: 2335668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 504968, stem: 2336038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 505048, stem: 2336408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 505128, stem: 2336778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 505208, stem: 2337148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 505288, stem: 2337518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 505368, stem: 2337888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 505448, stem: 2338258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 505528, stem: 2338628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 505608, stem: 2338998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 505688, stem: 2339368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 505768, stem: 2339738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 505848, stem: 2340108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 505928, stem: 2340478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 506008, stem: 2340848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 506088, stem: 2341218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 506168, stem: 2341588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 506248, stem: 2341958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 506328, stem: 2342328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 506408, stem: 2342698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 506488, stem: 2343068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 506568, stem: 2343438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 506648, stem: 2343808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 506728, stem: 2344178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 506808, stem: 2344548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 506888, stem: 2344918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 506968, stem: 2345288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 507048, stem: 2345658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 507128, stem: 2346028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 507208, stem: 2346398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 507288, stem: 2346768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 507368, stem: 2347138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 507448, stem: 2347508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 507528, stem: 2347878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 507608, stem: 2348248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 507688, stem: 2348618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 507768, stem: 2348988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 507848, stem: 2349358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 507928, stem: 2349728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 508008, stem: 2350098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 508088, stem: 2350468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 508168, stem: 2350838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 508248, stem: 2351208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 508328, stem: 2351578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 508408, stem: 2351948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 508488, stem: 2352318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 508568, stem: 2352688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 508648, stem: 2353058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 508728, stem: 2353428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 508808, stem: 2353798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 508888, stem: 2354168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 508968, stem: 2354538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 509048, stem: 2354908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 509128, stem: 2355278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 509208, stem: 2355648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 509288, stem: 2356018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 509368, stem: 2356388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 509448, stem: 2356758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 509528, stem: 2357128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 509608, stem: 2357498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 509688, stem: 2357868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 509768, stem: 2358238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 509848, stem: 2358608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 509928, stem: 2358978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 510008, stem: 2359348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 510088, stem: 2359718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 510168, stem: 2360088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 510248, stem: 2360458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 510328, stem: 2360828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 510408, stem: 2361198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 510488, stem: 2361568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 510568, stem: 2361938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 510648, stem: 2362308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 510728, stem: 2362678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 510808, stem: 2363048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 510888, stem: 2363418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 510968, stem: 2363788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 511048, stem: 2364158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 511128, stem: 2364528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 511208, stem: 2364898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 511288, stem: 2365268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 511368, stem: 2365638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 511448, stem: 2366008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 511528, stem: 2366378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 511608, stem: 2366748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 511688, stem: 2367118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 511768, stem: 2367488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 511848, stem: 2367858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 511928, stem: 2368228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 512008, stem: 2368598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 512088, stem: 2368968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 512168, stem: 2369338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 512248, stem: 2369708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 512328, stem: 2370078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 512408, stem: 2370448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 512488, stem: 2370818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 512568, stem: 2371188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 512648, stem: 2371558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 512728, stem: 2371928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 512808, stem: 2372298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 512888, stem: 2372668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 512968, stem: 2373038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 513048, stem: 2373408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 513128, stem: 2373778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 513208, stem: 2374148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 513288, stem: 2374518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 513368, stem: 2374888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 513448, stem: 2375258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 513528, stem: 2375628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 513608, stem: 2375998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 513688, stem: 2376368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 513768, stem: 2376738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 513848, stem: 2377108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 513928, stem: 2377478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 514008, stem: 2377848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 514088, stem: 2378218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 514168, stem: 2378588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 514248, stem: 2378958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 514328, stem: 2379328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 514408, stem: 2379698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 514488, stem: 2380068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 514568, stem: 2380438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 514648, stem: 2380808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 514728, stem: 2381178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 514808, stem: 2381548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 514888, stem: 2381918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 514968, stem: 2382288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 515048, stem: 2382658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 515128, stem: 2383028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 515208, stem: 2383398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 515288, stem: 2383768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 515368, stem: 2384138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 515448, stem: 2384508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 515528, stem: 2384878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 515608, stem: 2385248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 515688, stem: 2385618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 515768, stem: 2385988, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 515848, stem: 2386358, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 515928, stem: 2386728, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 516008, stem: 2387098, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 516088, stem: 2387468, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 516168, stem: 2387838, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 516248, stem: 2388208, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 516328, stem: 2388578, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 516408, stem: 2388948, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 516488, stem: 2389318, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 516568, stem: 2389688, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 516648, stem: 2390058, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 516728, stem: 2390428, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 516808, stem: 2390798, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 516888, stem: 2391168, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 516968, stem: 2391538, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 517048, stem: 2391908, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 517128, stem: 2392278, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 517208, stem: 2392648, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 517288, stem: 2393018, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 517368, stem: 2393388, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 517448, stem: 2393758, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 517528, stem: 2394128, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 517608, stem: 2394498, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 517688, stem: 2394868, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 517768, stem: 2395238, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 517848, stem: 2395608, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 517928, stem: 2395978, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 518008, stem: 2396348, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 518088, stem: 2396718, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 518168, stem: 2397088, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 518248, stem: 2397458, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 518328, stem: 2397828, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 518408, stem: 2398198, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 518488, stem: 2398568, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 518568, stem: 2398938, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 518648, stem: 2399308, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 518728, stem: 2399678, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 518808, stem: 2400048, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 518888, stem: 2400418, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 518968, stem: 2400788, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 519048, stem: 2401158, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 519128, stem: 2401528, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 519208, stem: 2401898, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 519288, stem: 2402268, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 519368, stem: 2402638, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 519448, stem: 2403008, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 519528, stem: 2403378, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 519608, stem: 2403748, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 519688, stem: 2404118, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 519768, stem: 2404488, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 519848, stem: 2404858, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 519928, stem: 2405228, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 520008, stem: 2405598, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 520088, stem: 2405968, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 520168, stem: 2406338, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 520248, stem: 2406708, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 520328, stem: 2407078, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 520408, stem: 2407448, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 520488, stem: 2407818, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 520568, stem: 2408188, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 520648, stem: 2408558, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 520728, stem: 2408928, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 520808, stem: 2409298, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 520888, stem: 2409668, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 520968, stem: 2410038, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 521048, stem: 2410408, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 521128, stem: 2410778, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 521208, stem: 2411148, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 521288, stem: 2411518, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 521368, stem: 2411888, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 521448, stem: 2412258, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 521528, stem: 2412628, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 521608, stem: 2412998, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 521688, stem: 2413368, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 521768, stem: 2413738, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 521848, stem: 2414108, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 521928, stem: 2414478, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 522008, stem: 2414848, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 522088, stem: 2415218, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 522168, stem: 2415588, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 522248, stem: 2415958, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 522328, stem: 2416328, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 522408, stem: 2416698, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 522488, stem: 2417068, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 522568, stem: 2417438, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 522648, stem: 2417808, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 522728, stem: 2418178, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 522808, stem: 2418548, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 522888, stem: 2418918, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 522968, stem: 2419288, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 523048, stem: 2419658, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 523128, stem: 2420028, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 523208, stem: 2420398, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 523288, stem: 2420768, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 523368, stem: 2421138, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 523448, stem: 2421508, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 523528, stem: 2421878, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 523608, stem: 2422248, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 523688, stem: 2422618, fault:7700. propagate_cnt: 8, stem_cnt: 88, fault_cnt:385 +[UP] propagate: 523768, stem: 2422988, fault:7700. prop \ No newline at end of file diff --git a/parser.cpp b/parser.cpp index 438d432..b380225 100644 --- a/parser.cpp +++ b/parser.cpp @@ -73,10 +73,10 @@ void Circuit::parse_from_file(const char *filename) { Gate* gate = new Gate(); gate->name = tokens[0]; - gate->sa[0] = gate->sa[1] = false; + gate->fault_satisfied[0] = gate->fault_satisfied[1] = false; gate->stem = false; - gate->isPI = false; - gate->isPO = false; + gate->pi = false; + gate->po = false; for(auto &in : ins) { @@ -113,10 +113,10 @@ void Circuit::parse_from_file(const char *filename) { Gate* gate = new Gate(); gate->name = tokens[2]; gate->type = Gate::INPUT; - gate->sa[0] = gate->sa[1] = false; + gate->fault_satisfied[0] = gate->fault_satisfied[1] = false; gate->stem = true; - gate->isPI = true; - gate->isPO = false; + gate->pi = true; + gate->po = false; name2gate.insert(std::make_pair(gate->name, gate)); gates.push_back(gate); @@ -141,7 +141,7 @@ void Circuit::parse_from_file(const char *filename) { } Gate* po = name2gate[po_name]; - po->isPO = true; + po->po = true; po->stem = true; POs.push_back(po); }